salesmate node

This commit is contained in:
Ricardo Espinoza
2020-01-20 22:00:27 -05:00
parent b0c6f1cf1b
commit 63c96497be
7 changed files with 1150 additions and 0 deletions

View File

@@ -0,0 +1,22 @@
export interface ICompany {
name?: string;
owner?: number;
website?: string;
phone?: string;
otherPhone?: string;
googlePlusHandle?: string;
linkedInHandle?: string;
facebookHandle?: string;
linkedinHandle?: string;
skypeId?: string;
twitterHandle?: string;
currency?: string;
billingAddressLine1?: string;
billingAddressLine2?: string;
billingCity?: string;
billingZipCode?: string;
billingCountry?: string;
billingState?: string;
description?: string;
tags?: string;
}