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

14 lines
208 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-13 00:51:36 +04:00
class CommentModel {
final String title;
final String text;
2024-09-13 01:19:44 +04:00
final UserModel user;
2024-09-13 00:51:36 +04:00
CommentModel({
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
});
}