aboutsummaryrefslogtreecommitdiff
path: root/models/series.go
diff options
context:
space:
mode:
Diffstat (limited to 'models/series.go')
-rw-r--r--models/series.go11
1 files changed, 11 insertions, 0 deletions
diff --git a/models/series.go b/models/series.go
new file mode 100644
index 0000000..1ae3aa6
--- /dev/null
+++ b/models/series.go
@@ -0,0 +1,11 @@
1package models
2
3type Series struct {
4 ID int
5 Name string
6 KanjiName string
7 RomajiName string
8 FuriganaName string
9 OtherNames []string
10 Tags []string
11}