File

src/app/contacts/shared/contacts-book.model.ts

Index

Properties

Constructor

constructor(contacts: Contact[], groups: Group[], createDate: number, ownerId: number, id?: number)
Parameters :
Name Type Optional Description
contacts Contact[]
groups Group[]
createDate number
ownerId number
id number true

Properties

Public contacts
contacts: Contact[]
Type : Contact[]
Public createDate
createDate: number
Type : number
Public groups
groups: Group[]
Type : Group[]
Public id
id: number
Type : number
Public ownerId
ownerId: number
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) {
  }
}

results matching ""

    No results matching ""