ff-admin-server/src/command/communicationTypeCommand.ts

17 lines
370 B
TypeScript
Raw Normal View History

2024-09-18 09:43:02 +02:00
import { CommunicationFieldType } from "../type/fieldTypes";
2024-09-05 16:17:22 +02:00
export interface CreateCommunicationTypeCommand {
type: string;
2024-09-18 09:43:02 +02:00
useColumns: Array<CommunicationFieldType>;
2024-09-05 16:17:22 +02:00
}
export interface UpdateCommunicationTypeCommand {
id: number;
type: string;
2024-09-18 09:43:02 +02:00
useColumns: Array<CommunicationFieldType>;
2024-09-05 16:17:22 +02:00
}
export interface DeleteCommunicationTypeCommand {
id: number;
}