src/app/models/recipient.model.ts
Properties |
|
constructor(id: number, name: string, contactOne: string, contactTwo: string, secretWord: string)
|
Defined in src/app/models/recipient.model.ts:1
|
Public contactOne |
contactOne:
|
Type : string
|
Defined in src/app/models/recipient.model.ts:5
|
Public contactTwo |
contactTwo:
|
Type : string
|
Defined in src/app/models/recipient.model.ts:6
|
Public id |
id:
|
Type : number
|
Defined in src/app/models/recipient.model.ts:3
|
Public name |
name:
|
Type : string
|
Defined in src/app/models/recipient.model.ts:4
|
Public secretWord |
secretWord:
|
Type : string
|
Defined in src/app/models/recipient.model.ts:7
|
export class Recipient {
constructor(
public id: number,
public name: string,
public contactOne: string,
public contactTwo: string,
public secretWord: string
) {}
}