22 lines
287 B
TypeScript
22 lines
287 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,
|
|
markdown,
|
|
fotos,
|
|
link
|
|
} |