Daily commit
This commit is contained in:
@ -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});
|
||||
}
|
||||
Reference in New Issue
Block a user