+ quotation provider

This commit is contained in:
Stephan D
2025-12-11 01:13:13 +01:00
parent bdf766075e
commit a4481fb63d
102 changed files with 2242 additions and 246 deletions

View File

@@ -0,0 +1,21 @@
import 'package:json_annotation/json_annotation.dart';
part 'ledger.g.dart';
@JsonSerializable()
class LedgerEndpointDTO {
@JsonKey(name: 'ledger_account_ref')
final String ledgerAccountRef;
@JsonKey(name: 'contra_ledger_account_ref')
final String? contraLedgerAccountRef;
const LedgerEndpointDTO({
required this.ledgerAccountRef,
this.contraLedgerAccountRef,
});
factory LedgerEndpointDTO.fromJson(Map<String, dynamic> json) => _$LedgerEndpointDTOFromJson(json);
Map<String, dynamic> toJson() => _$LedgerEndpointDTOToJson(this);
}