15 lines
349 B
TypeScript
15 lines
349 B
TypeScript
|
import type { 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;
|
||
|
}
|