2024-09-16 15:55:41 +02:00
|
|
|
import { CommunicationTypeViewModel } from "./communicationType.models";
|
|
|
|
|
|
|
|
export interface CommunicationViewModel {
|
|
|
|
id: number;
|
|
|
|
preferred: boolean;
|
|
|
|
mobile: string;
|
|
|
|
email: string;
|
|
|
|
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
|
|
|
}
|