12 lines
218 B
Dart
12 lines
218 B
Dart
// class WorkingTimeModel {
|
|
// String type;
|
|
// String startTime;
|
|
// String endTime;
|
|
|
|
// WorkingTimeModel({
|
|
// required this.type,
|
|
// required this.startTime,
|
|
// required this.endTime,
|
|
// });
|
|
// }
|