Files
barker/bookie/src/app/bill-settlement-report/bill-settlement-report-item.ts
tanshu 6567f560ab Updated to angular 11
Now compiling with strict mode in typescript
Need to error checking now
2020-11-22 10:13:37 +05:30

15 lines
306 B
TypeScript

export class BillSettlementReportItem {
date: string;
billId: string;
amount: number;
settlement: string;
public constructor(init?: Partial<BillSettlementReportItem>) {
this.date = '';
this.billId = '';
this.amount = 0;
this.settlement = '';
Object.assign(this, init);
}
}