Add Nuxt
This commit is contained in:
23
app/dto/event.dto.ts
Normal file
23
app/dto/event.dto.ts
Normal 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"
|
||||
}
|
||||
Reference in New Issue
Block a user