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

23 lines
367 B
TypeScript
Raw Normal View History

2024-10-27 10:47:13 +00:00
export interface CreateCalendarCommand {
date: Date;
starttime: Date;
endtime: Date;
title: string;
content: string;
typeId: number;
}
export interface UpdateCalendarCommand {
id: number;
date: Date;
starttime: Date;
endtime: Date;
title: string;
content: string;
typeId: number;
}
export interface DeleteCalendarCommand {
id: number;
}