2025-02-15 10:59:54 +01:00
|
|
|
import { CommunicationTypeViewModel } from "../../configuration/communicationType.models";
|
2024-09-16 15:55:41 +02:00
|
|
|
|
|
|
|
export interface CommunicationViewModel {
|
|
|
|
id: number;
|
|
|
|
preferred: boolean;
|
|
|
|
mobile: string;
|
|
|
|
email: string;
|
2025-01-03 19:26:33 +01:00
|
|
|
postalCode: string;
|
2024-09-16 15:55:41 +02:00
|
|
|
city: string;
|
|
|
|
street: string;
|
|
|
|
streetNumber: number;
|
|
|
|
streetNumberAddition: string;
|
|
|
|
type: CommunicationTypeViewModel;
|
|
|
|
isNewsletterMain: boolean;
|
2024-11-27 10:07:59 +01:00
|
|
|
isSMSAlarming: boolean;
|
2024-09-16 15:55:41 +02:00
|
|
|
}
|