member data listing

This commit is contained in:
Julian Krauser 2024-09-18 09:28:59 +02:00
parent 5eeea631c0
commit 6847ae083e
14 changed files with 286 additions and 15 deletions

View file

@ -1,16 +1,18 @@
import type { CommunicationFieldType } from "../../types/fieldTypes";
export interface CommunicationTypeViewModel {
id: number;
type: string;
fields: Array<string>;
fields: Array<CommunicationFieldType>;
}
export interface CreateCommunicationTypeViewModel {
type: string;
fields: Array<string>;
fields: Array<CommunicationFieldType>;
}
export interface UpdateCommunicationTypeViewModel {
id: number;
type: string;
fields: Array<string>;
fields: Array<CommunicationFieldType>;
}