mirror of
https://code.equilibrium.co.ao/ITO/doneit-web.git
synced 2026-04-19 13:02:56 +00:00
fix
This commit is contained in:
@@ -40,4 +40,4 @@ export interface days {
|
||||
activeEvent: number
|
||||
events: CustomCalendarEvent[]
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -33,9 +33,29 @@ export class Event{
|
||||
EventRecurrence: EventRecurrence;
|
||||
Name?: string
|
||||
Attachments?: Attachment[];
|
||||
HumanDate?: string;
|
||||
IsAllDayEvent?: boolean;
|
||||
}
|
||||
|
||||
|
||||
interface EventList {
|
||||
HasAttachments: boolean;
|
||||
IsAllDayEvent: boolean;
|
||||
EventId: string;
|
||||
Subject: string;
|
||||
Location: string;
|
||||
CalendarId: string;
|
||||
CalendarName: string;
|
||||
StartDate: string;
|
||||
EndDate: string;
|
||||
Schedule: string;
|
||||
RequiredAttendees: any; // Adjust type as per your data
|
||||
OptionalAttendees: any; // Adjust type as per your data
|
||||
HumanDate: string;
|
||||
TimeZone: string;
|
||||
IsPrivate: boolean;
|
||||
}
|
||||
|
||||
// event to approve details ================================================
|
||||
export interface Originator {
|
||||
email: string;
|
||||
|
||||
@@ -6,6 +6,6 @@ export class Folder{
|
||||
SourceType:string;
|
||||
SourceId:string;
|
||||
DeadlineType: string;
|
||||
SubjectTypes: string[];
|
||||
SubjectTypes: string;
|
||||
NumberPDPP:string;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user