zgo/src/app/owner.model.ts

17 lines
259 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;
2021-10-20 20:51:14 +00:00
}