18 lines
319 B
TypeScript
18 lines
319 B
TypeScript
export interface CreateCalendarTypeCommand {
|
|
type: string;
|
|
nscdr: boolean;
|
|
color: string;
|
|
passphrase?: string;
|
|
}
|
|
|
|
export interface UpdateCalendarTypeCommand {
|
|
id: number;
|
|
type: string;
|
|
nscdr: boolean;
|
|
color: string;
|
|
passphrase?: string;
|
|
}
|
|
|
|
export interface DeleteCalendarTypeCommand {
|
|
id: number;
|
|
}
|