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

23 lines
367 B
TypeScript
Raw Normal View History

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