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

15 lines
276 B
TypeScript
Raw Normal View History

2024-09-05 16:17:22 +02:00
export interface CreateCommunicationTypeCommand {
type: string;
useColumns: Array<string>;
}
export interface UpdateCommunicationTypeCommand {
id: number;
type: string;
useColumns: Array<string>;
}
export interface DeleteCommunicationTypeCommand {
id: number;
}