ff-admin-server/src/command/calendarTypeCommand.ts

17 lines
273 B
TypeScript
Raw Normal View History

2024-10-27 11:47:13 +01:00
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;
}