mirror of
https://code.equilibrium.co.ao/ITO/doneit-web.git
synced 2026-04-19 04:57:52 +00:00
Improve search
This commit is contained in:
@@ -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;
|
||||
}
|
||||
@@ -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[]
|
||||
}
|
||||
Reference in New Issue
Block a user