portablefinance/ts/interfaces/voucher.ts

7 lines
148 B
TypeScript
Raw Permalink Normal View History

2021-04-15 00:59:56 +00:00
export interface IVoucher {
voucherDate: Date;
voucherId: string;
voucherStatus: 'uploaded' | 'transmitted';
2023-11-17 11:31:36 +00:00
voucherBinaryString: string;
2021-04-15 00:59:56 +00:00
}