19 lines
299 B
TypeScript
19 lines
299 B
TypeScript
|
|
||
|
export class DaybookItem {
|
||
|
date: string;
|
||
|
type: string;
|
||
|
narration: string;
|
||
|
debitText: string;
|
||
|
debitAmount: number;
|
||
|
creditText: string;
|
||
|
creditAmount: number;
|
||
|
posted: boolean;
|
||
|
url: string;
|
||
|
}
|
||
|
|
||
|
export class Daybook {
|
||
|
startDate: string;
|
||
|
finishDate: string;
|
||
|
body: DaybookItem[];
|
||
|
}
|