Create Contact model interfaces

master
Kevin C. Coram 2019-08-27 23:16:55 -04:00
parent b4ff7793a0
commit 38b9a40167
Signed by: kevin
GPG Key ID: 0342351B3D61AD35
1 changed files with 20 additions and 0 deletions

View File

@ -0,0 +1,20 @@
export interface Name {
firstName?: string;
lastName?: string;
middleName?: string;
prefix?: string;
suffix?: string;
}
export interface Address {
line_1?: string;
line_2?: string;
city?: string;
state?: string;
postalCode?: string;
}
export interface Contact {
name?: Name;
addresses?: Address[];
}