Browse Source

添加视频类型枚举

Signed-off-by: allan716 <[email protected]>
allan716 4 years ago
parent
commit
71450f1c1e
1 changed files with 8 additions and 0 deletions
  1. 8 0
      common/VideoType.go

+ 8 - 0
common/VideoType.go

@@ -0,0 +1,8 @@
+package common
+
+type VideoType int
+const (
+	Movie	VideoType = iota				// 电影
+	Series									// 连续剧,可能需要分美剧、日剧、韩剧?
+	Anime									// 动画
+)