communication type typing

This commit is contained in:
Julian Krauser 2024-09-18 09:43:02 +02:00
parent f673dec5fa
commit 72c47ba212
5 changed files with 34 additions and 8 deletions

View file

@ -1,5 +1,7 @@
import { CommunicationFieldType } from "../../type/fieldTypes";
export interface CommunicationTypeViewModel {
id: number;
type: string;
fields: Array<string>;
fields: Array<CommunicationFieldType>;
}