15 lines
281 B
TypeScript
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);
|
|
}
|
|
}
|