Files
Dennis Nemec 2470299a10 BIG FAT
2026-04-28 13:03:09 +02:00

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,
});
}