ff-admin-server/src/viewmodel/admin/calendar.models.ts
2024-10-28 16:02:56 +01:00

14 lines
297 B
TypeScript

import { CalendarTypeViewModel } from "./calendarType.models";
export interface CalendarViewModel {
id: string;
starttime: Date;
endtime: Date;
title: string;
content: string;
location: string;
allDay: boolean;
createdAt: Date;
updatedAt: Date;
type: CalendarTypeViewModel;
}