mirror of
https://gitlab.dit.htwk-leipzig.de/htwk-software/htwkalender.git
synced 2025-08-04 02:39:14 +02:00
11 lines
187 B
TypeScript
11 lines
187 B
TypeScript
import { Module } from "./module";
|
|
|
|
export type Calendar = {
|
|
collectionId: string;
|
|
collectionName: string;
|
|
created: string;
|
|
id: string;
|
|
modules: Module[];
|
|
updated: string;
|
|
};
|