taafee-mobile/lib/features/card/data_layer/model/working_time.dart
2023-11-13 09:59:14 +03:00

12 lines
188 B
Dart

class WorkingTimeModel {
String type;
String startTime;
String endTime;
WorkingTimeModel({
required this.type,
required this.startTime,
required this.endTime,
});
}