src/app/contacts/shared/address.model.ts
Properties |
city |
city:
|
Type : string
|
Defined in src/app/contacts/shared/address.model.ts:5
|
country |
country:
|
Type : string
|
Defined in src/app/contacts/shared/address.model.ts:4
|
id |
id:
|
Type : number
|
Defined in src/app/contacts/shared/address.model.ts:7
|
state |
state:
|
Type : string
|
Defined in src/app/contacts/shared/address.model.ts:3
|
street |
street:
|
Type : string
|
Defined in src/app/contacts/shared/address.model.ts:2
|
zipCode |
zipCode:
|
Type : string
|
Defined in src/app/contacts/shared/address.model.ts:6
|
export interface Address {
street?: string
state?: string
country?: string
city?: string
zipCode?: string
id?: number
}