Improve search

This commit is contained in:
Peter Maquiran
2021-04-19 15:21:35 +01:00
parent bd2a2fd3f4
commit 8b26ffd9a5
8 changed files with 116 additions and 36 deletions
+12
View File
@@ -18,4 +18,16 @@ export enum Sources
K2 = 2,
Exchange = 3,
File = 4
}
export class EventAttachment {
Id?: string; // id do evento
ParentId: string;
Source: string;
SourceId: string;
Link?: string;
SerialNumber?: string;
ApplicationId: string;
}
+2
View File
@@ -1,5 +1,6 @@
import { EventBody } from './eventbody.model';
import { EventPerson } from './eventperson.model';
import { SearchDocument } from './search-document';
export class Event{
EventId: string;
@@ -19,4 +20,5 @@ export class Event{
Organizer: string;
Categories: string[];
HasAttachments: boolean;
// documents?: SearchDocument[]
}