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,12 +1,14 @@
import { CommunicationFieldType } from "../type/fieldTypes";
export interface CreateCommunicationTypeCommand {
type: string;
useColumns: Array<string>;
useColumns: Array<CommunicationFieldType>;
}
export interface UpdateCommunicationTypeCommand {
id: number;
type: string;
useColumns: Array<string>;
useColumns: Array<CommunicationFieldType>;
}
export interface DeleteCommunicationTypeCommand {