viewmodels and factories
This commit is contained in:
parent
93e27ab440
commit
7cd4e5505b
25 changed files with 501 additions and 69 deletions
14
src/viewmodel/admin/communication.models.ts
Normal file
14
src/viewmodel/admin/communication.models.ts
Normal 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;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue