zgo/src/app/owner.model.ts

19 lines
293 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;
email: string;
street: string;
city: string;
state: string;
postal: string;
phone: string;
2022-01-17 20:49:08 +00:00
paid: boolean;
2022-01-18 22:40:20 +00:00
website: string;
2021-10-20 20:51:14 +00:00
}