Daily commit

This commit is contained in:
Dennis Nemec
2026-02-05 10:46:13 +01:00
parent 4e808e234d
commit e0007dcf33
51 changed files with 2131 additions and 139 deletions

View File

@ -0,0 +1,21 @@
// GENERATED CODE - DO NOT MODIFY BY HAND
part of 'get_deliveries_dto.dart';
// **************************************************************************
// JsonSerializableGenerator
// **************************************************************************
GetDeliveriesDTO _$GetDeliveriesDTOFromJson(Map<String, dynamic> json) =>
GetDeliveriesDTO(
deliveries: (json['deliveries'] as List<dynamic>)
.map((e) => DeliveryDTO.fromJson(e as Map<String, dynamic>))
.toList(),
date: json['date'] as String,
);
Map<String, dynamic> _$GetDeliveriesDTOToJson(GetDeliveriesDTO instance) =>
<String, dynamic>{
'deliveries': instance.deliveries.map((e) => e.toJson()).toList(),
'date': instance.date,
};