Initial draft

This commit is contained in:
Dennis Nemec
2025-09-20 16:14:06 +02:00
commit b19a6e1cd4
219 changed files with 10317 additions and 0 deletions

View File

@ -0,0 +1,13 @@
// GENERATED CODE - DO NOT MODIFY BY HAND
part of 'discount_remove.dart';
// **************************************************************************
// JsonSerializableGenerator
// **************************************************************************
DiscountRemoveDTO _$DiscountRemoveDTOFromJson(Map<String, dynamic> json) =>
DiscountRemoveDTO(deliveryId: json['delivery_id'] as String);
Map<String, dynamic> _$DiscountRemoveDTOToJson(DiscountRemoveDTO instance) =>
<String, dynamic>{'delivery_id': instance.deliveryId};