ff-admin-server/src/viewmodel/admin/calendar.models.ts

15 lines
297 B
TypeScript
Raw Normal View History

2024-10-27 11:47:13 +01:00
import { CalendarTypeViewModel } from "./calendarType.models";
export interface CalendarViewModel {
2024-10-28 16:02:56 +01:00
id: string;
2024-10-27 11:47:13 +01:00
starttime: Date;
endtime: Date;
title: string;
content: string;
2024-10-28 16:02:56 +01:00
location: string;
allDay: boolean;
createdAt: Date;
updatedAt: Date;
2024-10-27 11:47:13 +01:00
type: CalendarTypeViewModel;
}