12 lines
184 B
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,
|
|
});
|
|
}
|