Files
CityCards_Partner_Flutter/lib/recurring/models/recurring_block_model.dart
2025-10-29 18:55:48 +05:30

26 lines
495 B
Dart

class RecurringBlockModel {
String? selectedCategory;
DateTime? startDate;
DateTime? endDate;
String attractionName;
String location;
String description;
RecurringBlockModel({
this.selectedCategory,
this.startDate,
this.endDate,
this.attractionName = '',
this.location = '',
this.description = '',
});
}
class TimeSlot {
final String startTime;
final String endTime;
final int capacity;
TimeSlot(this.startTime, this.endTime, this.capacity);
}