aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'pkg/models/thread.go')
-rw-r--r--pkg/models/thread.go8
1 files changed, 8 insertions, 0 deletions
diff --git a/pkg/models/thread.go b/pkg/models/thread.go
new file mode 100644
index 0000000..ebeff2a
--- /dev/null
+++ b/pkg/models/thread.go
@@ -0,0 +1,8 @@
+package models
+
+type Threads []struct {
+ Id string
+ Headers map[string][]string
+ Subject string
+ Count int
+}