2024-10-27 10:47:13 +00:00
|
|
|
export interface CreateCalendarCommand {
|
|
|
|
starttime: Date;
|
|
|
|
endtime: Date;
|
|
|
|
title: string;
|
|
|
|
content: string;
|
2024-10-28 15:02:56 +00:00
|
|
|
location: string;
|
|
|
|
allDay: boolean;
|
2024-10-27 10:47:13 +00:00
|
|
|
typeId: number;
|
|
|
|
}
|
|
|
|
|
|
|
|
export interface UpdateCalendarCommand {
|
2024-10-28 15:02:56 +00:00
|
|
|
id: string;
|
2024-10-27 10:47:13 +00:00
|
|
|
starttime: Date;
|
|
|
|
endtime: Date;
|
|
|
|
title: string;
|
|
|
|
content: string;
|
2024-10-28 15:02:56 +00:00
|
|
|
location: string;
|
|
|
|
allDay: boolean;
|
2024-10-27 10:47:13 +00:00
|
|
|
typeId: number;
|
|
|
|
}
|
|
|
|
|
|
|
|
export interface DeleteCalendarCommand {
|
2024-10-28 15:02:56 +00:00
|
|
|
id: string;
|
2024-10-27 10:47:13 +00:00
|
|
|
}
|