mirror of
https://github.com/iLoveElysia/openbilibili.git
synced 2026-03-14 13:56:26 -05:00
18 lines
200 B
Go
18 lines
200 B
Go
package model
|
|
|
|
// MSGType .
|
|
type MSGType uint8
|
|
|
|
// const .
|
|
const (
|
|
MSGTypeBlock MSGType = iota + 1
|
|
MSGTypeBlockRemove
|
|
)
|
|
|
|
// MSG .
|
|
type MSG struct {
|
|
Code string
|
|
Title string
|
|
Content string
|
|
}
|