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