7 lines
148 B
TypeScript
7 lines
148 B
TypeScript
export interface IVoucher {
|
|
voucherDate: Date;
|
|
voucherId: string;
|
|
voucherStatus: 'uploaded' | 'transmitted';
|
|
voucherBinaryString: string;
|
|
}
|