PIbd-31_MasenkinMS_PMU/lib/domain/models/comment.dart

16 lines
238 B
Dart
Raw Normal View History

2024-09-30 02:09:26 +04:00
import 'user.dart';
2024-09-13 01:19:44 +04:00
2024-09-30 22:15:55 +04:00
class CommentData {
2024-10-02 02:39:17 +04:00
final String? id;
2024-09-13 00:51:36 +04:00
final String title;
final String text;
2024-09-30 22:15:55 +04:00
final UserData user;
2024-09-13 00:51:36 +04:00
2024-09-30 22:15:55 +04:00
CommentData({
2024-10-02 02:39:17 +04:00
this.id,
2024-09-13 00:51:36 +04:00
required this.title,
required this.text,
2024-09-13 01:19:44 +04:00
required this.user,
2024-09-13 00:51:36 +04:00
});
}