This commit is contained in:
tiago.kayaya
2021-07-08 13:20:54 +01:00
parent 11e379d651
commit 88bdab5d65
8 changed files with 67 additions and 7 deletions
+7 -3
View File
@@ -1,6 +1,6 @@
import { EventRecurrence } from './agenda/eventrecurrence.model';
import { EventBody } from './eventbody.model';
import { EventPerson } from './eventperson.model';
import { SearchDocument } from './search-document';
export class Event{
ParentId?: string;
@@ -20,8 +20,12 @@ export class Event{
TimeZone: string;
Organizer: string;
Categories: string[];
HasAttachments: boolean;
// documents?: SearchDocument[]
HasAttachments: boolean;
EventRecurrence?: EventRecurrence;
/* public Event(){
this.EventRecurrence.Type = '-1';
} */
}
export class EventToApproveEdit {