add calendarview event creation

This commit is contained in:
Schneider Roland
2025-11-23 22:26:16 +01:00
parent 008b644bb1
commit 6b975dadac
24 changed files with 583 additions and 31 deletions

View File

@@ -0,0 +1,12 @@
// dvbooking-cli/src/templates/angular/model.ts.tpl
// Generated by the CLI
export interface EventFormDTO {
id?: number;
event_type_id: number;
title: string;
description?: string;
start_time?: Date;
end_time?: Date;
is_recurring: boolean;
}