23 lines
367 B
TypeScript
23 lines
367 B
TypeScript
|
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;
|
||
|
}
|