mirror of
https://github.com/iLoveElysia/openbilibili.git
synced 2026-06-08 05:58:29 -05:00
30 lines
455 B
Go
30 lines
455 B
Go
|
|
package model
|
||
|
|
|
||
|
|
// review state const.
|
||
|
|
const (
|
||
|
|
ReviewStateWait = iota
|
||
|
|
ReviewStatePass
|
||
|
|
ReviewStateNoPass
|
||
|
|
ReviewStateArchived
|
||
|
|
ReviewStateQueuing = 10
|
||
|
|
)
|
||
|
|
|
||
|
|
// review property const.
|
||
|
|
const (
|
||
|
|
ReviewProperty = iota
|
||
|
|
ReviewPropertyFace
|
||
|
|
ReviewPropertySign
|
||
|
|
ReviewPropertyName
|
||
|
|
)
|
||
|
|
|
||
|
|
// UserPropertyReview is.
|
||
|
|
type UserPropertyReview struct {
|
||
|
|
Mid int64
|
||
|
|
Old string
|
||
|
|
New string
|
||
|
|
State int8
|
||
|
|
Property int8
|
||
|
|
IsMonitor bool
|
||
|
|
Extra string
|
||
|
|
}
|