src/app/contacts/shared/phone.model.ts
Properties |
id |
id:
|
Type : number
|
Defined in src/app/contacts/shared/phone.model.ts:6
|
phone |
phone:
|
Type : string
|
Defined in src/app/contacts/shared/phone.model.ts:5
|
phoneType |
phoneType:
|
Type : PhoneType
|
Defined in src/app/contacts/shared/phone.model.ts:4
|
import {PhoneType} from "./phone-type.type";
export interface Phone {
phoneType: PhoneType
phone: string
id?: number
}