Files
Holzleitner-Lieferservice-App/lib/domain/entity/delivery_service_value.dart
Dennis Nemec a9bf8ecdd1 Final commit.
2026-06-01 17:12:28 +02:00

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