src/app/contacts/shared/contacts-book.model.ts
Properties |
|
constructor(contacts: Contact[], groups: Group[], createDate: number, ownerId: number, id?: number)
|
Public contacts |
contacts:
|
Type : Contact[]
|
Public createDate |
createDate:
|
Type : number
|
Public groups |
groups:
|
Type : Group[]
|
Public id |
id:
|
Type : number
|
Public ownerId |
ownerId:
|
Type : number
|
import {Contact} from "./contact.model";
import {Group} from "./group.model";
export class ContactsBook {
constructor(public contacts: Contact[],
public groups: Group[],
public createDate: number,
public ownerId: number,
public id?: number) {
}
}