zgo/src/app/owner.model.ts

19 lines
307 B
TypeScript

export interface Owner {
_id?: string;
address: string;
name: string;
currency: string;
tax: boolean;
taxValue: number;
vat: boolean;
vatValue: number;
paid: boolean;
zats: boolean;
invoices: boolean;
expiration: string;
payconf: boolean;
crmToken: string;
viewkey: string;
tips: boolean;
}