src/app/core/data/models/contact-person.model.ts
Properties |
|
| companyName |
companyName:
|
Type : string
|
| contactInformation |
contactInformation:
|
Type : string
|
| Optional |
| corporateDivision |
corporateDivision:
|
Type : string
|
| department |
department:
|
Type : string
|
| forename |
forename:
|
Type : string
|
| id |
id:
|
Type : number
|
| Optional |
| role |
role:
|
Type : string
|
| salutation |
salutation:
|
Type : Salutation
|
| sector |
sector:
|
Type : string
|
| surname |
surname:
|
Type : string
|
| title |
title:
|
Type : string
|
export enum Salutation {
Frau = 'FRAU',
Herr = 'HERR',
Divers = 'DIVERS',
}
export interface ContactPerson {
id?: number;
salutation: Salutation;
title: string;
forename: string;
surname: string;
companyName: string;
role: string;
sector: string;
department: string;
corporateDivision: string;
contactInformation?: string;
}