portablefinance/ts/interfaces/voucher.ts
2023-11-17 12:31:36 +01:00

7 lines
148 B
TypeScript

export interface IVoucher {
voucherDate: Date;
voucherId: string;
voucherStatus: 'uploaded' | 'transmitted';
voucherBinaryString: string;
}