2019-04-22 02:59:20 +00:00

13 lines
253 B
Go

package model
//go:generate $GOPATH/src/go-common/app/tool/warden/protoc.sh
const (
// HideStateON 不记录播放历史
HideStateON = 1
// HideStateOFF 记录播放历史
HideStateOFF = 0
// HideStateNotFound not found
HideStateNotFound = -1
)