mirror of
https://code.equilibrium.co.ao/ITO/doneit-web.git
synced 2026-04-19 21:06:06 +00:00
New Services, New Login, Better things
This commit is contained in:
@@ -3,7 +3,7 @@ import { EventPerson } from './eventperson.model';
|
||||
import { EventAttachment } from './eventattachment.model';
|
||||
import { EventOrganizer } from './organizer.model';
|
||||
|
||||
export interface Event{
|
||||
export class Event{
|
||||
|
||||
EventId: string;
|
||||
Subject: string;
|
||||
@@ -14,15 +14,13 @@ export interface Event{
|
||||
StartDate: string;
|
||||
EndDate: string;
|
||||
EventType: string;
|
||||
RequiredAttendees: EventPerson;
|
||||
OptionalAttendees: EventPerson;
|
||||
HasAttachments: boolean;
|
||||
RequiredAttendees: EventPerson[];
|
||||
OptionalAttendees: EventPerson[];
|
||||
IsMeeting: boolean;
|
||||
IsRecurring: boolean;
|
||||
AppointmentState: number;
|
||||
TimeZone: string;
|
||||
Organizer: string;
|
||||
Categories: string[];
|
||||
Attachments: EventAttachment;
|
||||
|
||||
Attachments: EventAttachment[];
|
||||
}
|
||||
Reference in New Issue
Block a user