16 lines
273 B
TypeScript
16 lines
273 B
TypeScript
export interface CreateCalendarTypeCommand {
|
|
type: string;
|
|
nscdr: boolean;
|
|
color: string;
|
|
}
|
|
|
|
export interface UpdateCalendarTypeCommand {
|
|
id: number;
|
|
type: string;
|
|
nscdr: boolean;
|
|
color: string;
|
|
}
|
|
|
|
export interface DeleteCalendarTypeCommand {
|
|
id: number;
|
|
}
|