PIbd-31_MasenkinMS_PMU/lib/comment_model.dart

14 lines
214 B
Dart
Raw Permalink Normal View History

2024-09-13 01:19:44 +04:00
import 'user_model.dart';
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
});
}