Files
ritzenbergen-dto/event.dto.ts
2026-01-30 14:22:04 +01:00

22 lines
277 B
TypeScript

export class MyEvent {
id: number;
eventname: string;
datum: Date;
type: EventType;
content: string;
minitext: string;
link: string;
foto: string;
formular: number;
}
export enum EventType {
html,
markdown,
fotos,
link
}