mirror of
https://github.com/iLoveElysia/openbilibili.git
synced 2026-03-14 05:46:26 -05:00
14 lines
198 B
Go
14 lines
198 B
Go
|
|
package model
|
||
|
|
|
||
|
|
const (
|
||
|
|
//LogBlacklist blacklist action log type id
|
||
|
|
LogBlacklist = 1
|
||
|
|
)
|
||
|
|
|
||
|
|
//Page pager
|
||
|
|
type Page struct {
|
||
|
|
Num int `json:"num"`
|
||
|
|
Size int `json:"size"`
|
||
|
|
Total int `json:"total"`
|
||
|
|
}
|