PIbd-31_MasenkinMS_PMU/lib/comment_model.dart

12 lines
184 B
Dart

class CommentModel {
final String title;
final String text;
final String? imageUrl;
CommentModel({
required this.title,
required this.text,
this.imageUrl,
});
}