PIbd-31_MasenkinMS_PMU/lib/comment_model.dart

12 lines
184 B
Dart
Raw Normal View History

2024-09-13 00:51:36 +04:00
class CommentModel {
final String title;
final String text;
final String? imageUrl;
CommentModel({
required this.title,
required this.text,
this.imageUrl,
});
}