16 lines
391 B
Dart
16 lines
391 B
Dart
/// 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;
|
|
}
|