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,19 @@
import 'package:json_annotation/json_annotation.dart';
import 'delivery_dto.dart';
part 'get_deliveries_dto.g.dart';
@JsonSerializable(explicitToJson: true)
class GetDeliveriesDTO {
final List<DeliveryDTO> deliveries;
final String date;
GetDeliveriesDTO({
required this.deliveries,
required this.date
});
factory GetDeliveriesDTO.fromJson(Map<String, dynamic> json) => _$GetDeliveriesDTOFromJson(json);
Map<String, dynamic> toJson() => _$GetDeliveriesDTOToJson(this);
}