summaryrefslogtreecommitdiffstats
path: root/internal/models/files.go
diff options
context:
space:
mode:
Diffstat (limited to 'internal/models/files.go')
-rw-r--r--internal/models/files.go12
1 files changed, 12 insertions, 0 deletions
diff --git a/internal/models/files.go b/internal/models/files.go
new file mode 100644
index 0000000..269d6cc
--- /dev/null
+++ b/internal/models/files.go
@@ -0,0 +1,12 @@
+package models
+
+type OpenDirectorySearchParams struct {
+ URL string
+ Filename string
+ Extension string
+ Exclude string
+ Size int
+ From int
+}
+
+type OpenDirectorySearchResponse map[string]interface{}