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
+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[]
}