15 lines
276 B
TypeScript
15 lines
276 B
TypeScript
|
export interface CreateCommunicationTypeCommand {
|
||
|
type: string;
|
||
|
useColumns: Array<string>;
|
||
|
}
|
||
|
|
||
|
export interface UpdateCommunicationTypeCommand {
|
||
|
id: number;
|
||
|
type: string;
|
||
|
useColumns: Array<string>;
|
||
|
}
|
||
|
|
||
|
export interface DeleteCommunicationTypeCommand {
|
||
|
id: number;
|
||
|
}
|