diff options
Diffstat (limited to 'client/app/shared/search/search.model.ts')
-rw-r--r-- | client/app/shared/search/search.model.ts | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/client/app/shared/search/search.model.ts b/client/app/shared/search/search.model.ts new file mode 100644 index 000000000..932a6566c --- /dev/null +++ b/client/app/shared/search/search.model.ts | |||
@@ -0,0 +1,6 @@ | |||
1 | import { SearchField } from './search-field.type'; | ||
2 | |||
3 | export interface Search { | ||
4 | field: SearchField; | ||
5 | value: string; | ||
6 | } | ||