15 lines
282 B
Dart
15 lines
282 B
Dart
/*
|
|
Settings for the driver to select a car for the current workday.
|
|
*/
|
|
class CarSelection {
|
|
final DateTime date;
|
|
final int? selectedCarId;
|
|
final String? selectedCarPlate;
|
|
|
|
CarSelection({
|
|
required this.date,
|
|
this.selectedCarId,
|
|
this.selectedCarPlate,
|
|
});
|
|
}
|