2024-10-27 11:47:13 +01:00
|
|
|
export interface CreateCalendarTypeCommand {
|
|
|
|
type: string;
|
|
|
|
nscdr: boolean;
|
|
|
|
color: string;
|
2024-12-03 19:29:38 +01:00
|
|
|
passphrase?: string;
|
2024-10-27 11:47:13 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
export interface UpdateCalendarTypeCommand {
|
|
|
|
id: number;
|
|
|
|
type: string;
|
|
|
|
nscdr: boolean;
|
|
|
|
color: string;
|
2024-12-03 19:29:38 +01:00
|
|
|
passphrase?: string;
|
2024-10-27 11:47:13 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
export interface DeleteCalendarTypeCommand {
|
|
|
|
id: number;
|
|
|
|
}
|