13 lines
257 B
TypeScript
13 lines
257 B
TypeScript
// 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;
|
|
}
|