This commit is contained in:
2026-04-26 22:02:24 +02:00
commit 73442783b7
1470 changed files with 43422 additions and 0 deletions

23
app/dto/event.dto.ts Normal file
View File

@@ -0,0 +1,23 @@
export class MyEvent {
id: number;
eventname: string;
datum: Date;
type: EventType;
content: string;
minitext: string;
link: string|null;
foto: string;
formular: number|null;
}
export enum EventType {
html = "html",
markdown = "markdown",
fotos = "fotos",
link = "link",
dlink = "dlink"
}