Final commit.
This commit is contained in:
15
lib/domain/entity/delivery_service_value.dart
Normal file
15
lib/domain/entity/delivery_service_value.dart
Normal file
@ -0,0 +1,15 @@
|
||||
/// Pro-Lieferung gesetzter Wert eines Service. Je nach Service-Typ ist genau
|
||||
/// einer der beiden Slots gefüllt.
|
||||
class DeliveryServiceValue {
|
||||
const DeliveryServiceValue({
|
||||
required this.deliveryId,
|
||||
required this.serviceId,
|
||||
this.boolValue,
|
||||
this.numericValue,
|
||||
});
|
||||
|
||||
final String deliveryId;
|
||||
final String serviceId;
|
||||
final bool? boolValue;
|
||||
final int? numericValue;
|
||||
}
|
||||
Reference in New Issue
Block a user