Files
doneit-web/src/app/models/event.model.ts
T
Tiago Kayaya bfa4f2ec91 Refified processService methods;
Add approve page and criate its layout;
Finish functionality for list approve page
2020-11-05 16:43:01 +01:00

22 lines
528 B
TypeScript

import { EventBody } from './eventbody.model';
import { EventPerson } from './eventperson.model';
export class Event{
EventId: string;
Subject: string;
Body: EventBody;
Location: string;
CalendarId: string;
CalendarName: string;
StartDate: Date;
EndDate: Date;
EventType: string;
Attendees: EventPerson[];
IsMeeting: boolean;
IsRecurring: boolean;
AppointmentState: number;
TimeZone: string;
Organizer: string;
Categories: string[];
HasAttachments: boolean;
}