Files
sendico/frontend/pshared/lib/data/dto/payment/quote_fees.dart
2026-02-24 21:18:23 +01:00

17 lines
416 B
Dart

import 'package:json_annotation/json_annotation.dart';
import 'package:pshared/data/dto/payment/fee_line.dart';
part 'quote_fees.g.dart';
@JsonSerializable()
class QuoteFeesDTO {
final List<FeeLineDTO>? lines;
const QuoteFeesDTO({this.lines});
factory QuoteFeesDTO.fromJson(Map<String, dynamic> json) =>
_$QuoteFeesDTOFromJson(json);
Map<String, dynamic> toJson() => _$QuoteFeesDTOToJson(this);
}