PMU-PIbd-32-Fedorenko-G-Y/flutter_app/lib/models/review.dart
2024-10-03 11:45:55 +04:00

6 lines
92 B
Dart

class Review {
final String text;
final int rating;
Review(this.text, this.rating);
}