Files
htwkalender/frontend/src/model/calendar.ts
2023-10-17 21:16:58 +02:00

11 lines
187 B
TypeScript

import { Module } from "./module";
export type Calendar = {
collectionId: string;
collectionName: string;
created: string;
id: string;
modules: Module[];
updated: string;
};