mirror of
https://gitlab.dit.htwk-leipzig.de/htwk-software/htwkalender-pwa.git
synced 2026-01-18 00:42:26 +01: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;
|
|
};
|