Daily commit

This commit is contained in:
Dennis Nemec
2026-02-05 10:46:13 +01:00
parent 4e808e234d
commit e0007dcf33
51 changed files with 2131 additions and 139 deletions

View File

@ -16,3 +16,21 @@ class Supplier {
required this.address,
});
}
/// Contains information about the cars the supplier has and how many
/// deliveries they have per car.
class SupplierTourMetadata {
String date;
/// The list of cars the supplier has and how many deliveries they have per car.
List<TourMetadata> tours;
SupplierTourMetadata({required this.date, required this.tours});
}
class TourMetadata {
Car car;
int amountDeliveries;
TourMetadata({required this.car, required this.amountDeliveries});
}