aboutsummaryrefslogtreecommitdiff
path: root/models/series.go
diff options
context:
space:
mode:
authorjan <jan@ruken.pw>2016-10-12 14:03:40 (UTC)
committerjan <jan@ruken.pw>2016-10-12 14:03:40 (UTC)
commitdef8ba82c69891244eb0f8eebe0cb0b3bb23955b (patch)
treed126befcea381077bd3074661821602d4b0c4c42 /models/series.go
parentc6165a8bbcca97867205fa87456ba238beb760f9 (diff)
alle models verschoben
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}