nested-forms/libs/contact/src/lib/contact-model.ts

21 lines
312 B
TypeScript
Raw Normal View History

2019-08-28 03:16:55 +00:00
export interface Name {
firstName: string;
lastName: string;
middleName: string;
prefix: string;
suffix: string;
2019-08-28 03:16:55 +00:00
}
export interface Address {
line1: string;
line2: string;
city: string;
state: string;
postalCode: string;
2019-08-28 03:16:55 +00:00
}
export interface Contact {
name: Name;
addresses: Address[];
2019-08-28 03:16:55 +00:00
}