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