Pibd-33_Tikhonenkov_Alexey_PMU/lib/domain/quote.dart

9 lines
199 B
Dart
Raw Normal View History

2024-12-18 03:01:46 +04:00
class Quote {
final String text;
final String author;
final String imagePath;
2024-12-18 13:10:57 +04:00
final String id;
final bool isLiked;
Quote(this.text, this.author, this.imagePath, this.id, this.isLiked);
2024-12-18 03:01:46 +04:00
}