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;
|
|
|
|
}
|