24 lines
417 B
TypeScript
24 lines
417 B
TypeScript
export interface CreateCalendarCommand {
|
|
starttime: Date;
|
|
endtime: Date;
|
|
title: string;
|
|
content: string;
|
|
location: string;
|
|
allDay: boolean;
|
|
typeId: number;
|
|
}
|
|
|
|
export interface UpdateCalendarCommand {
|
|
id: string;
|
|
starttime: Date;
|
|
endtime: Date;
|
|
title: string;
|
|
content: string;
|
|
location: string;
|
|
allDay: boolean;
|
|
typeId: number;
|
|
}
|
|
|
|
export interface DeleteCalendarCommand {
|
|
id: string;
|
|
}
|