zgo/src/app/owner.model.ts

11 lines
162 B
TypeScript
Raw Normal View History

2021-10-20 20:51:14 +00:00
export interface Owner {
2021-10-21 16:22:48 +00:00
_id?: string;
2021-10-20 20:51:14 +00:00
address: string;
name: string;
2021-11-22 20:37:45 +00:00
currency: string;
tax: boolean;
taxValue: number;
vat: boolean;
vatValue: number;
2021-10-20 20:51:14 +00:00
}