bilibili-backup/app/admin/main/block/model/msg.go

18 lines
200 B
Go
Raw Normal View History

2019-04-22 10:59:20 +08:00
package model
// MSGType .
type MSGType uint8
// const .
const (
MSGTypeBlock MSGType = iota + 1
MSGTypeBlockRemove
)
// MSG .
type MSG struct {
Code string
Title string
Content string
}