Files
ritzenbergen-dto/event.dto.ts
2026-02-02 11:49:52 +01:00

23 lines
349 B
TypeScript

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"
}