Files
brewman/overlord/src/app/net-transactions/net-transactions-item.ts
T
2020-11-23 16:42:54 +05:30

15 lines
281 B
TypeScript

export class NetTransactionsItem {
type: string;
name: string;
debit: number;
credit: number;
public constructor(init?: Partial<NetTransactionsItem>) {
this.type = '';
this.name = '';
this.debit = 0;
this.credit = 0;
Object.assign(this, init);
}
}