BIG FAT
This commit is contained in:
@ -0,0 +1,14 @@
|
||||
/*
|
||||
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,
|
||||
});
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user