viewmodels and factories

This commit is contained in:
Julian Krauser 2024-09-16 15:55:41 +02:00
parent 93e27ab440
commit 7cd4e5505b
25 changed files with 501 additions and 69 deletions

View file

@ -0,0 +1,14 @@
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;
}