mirror of
https://github.com/AynaLivePlayer/blivedm-go.git
synced 2025-12-06 11:22:50 +08:00
32 lines
590 B
Go
32 lines
590 B
Go
package message
|
|
|
|
type User struct {
|
|
Uid int
|
|
Uname string
|
|
Admin bool
|
|
Urank int
|
|
MobileVerify bool
|
|
Medal *Medal
|
|
GuardLevel int
|
|
UserLevel int64
|
|
UserColor uint32 // rgb
|
|
}
|
|
|
|
type Medal struct {
|
|
Name string
|
|
Level int
|
|
Color int
|
|
ColorStart int
|
|
ColorEnd int
|
|
ColorBorder int
|
|
UpRoomId int
|
|
UpUid int
|
|
UpName string
|
|
IsLight bool
|
|
V2ColorLevel uint32 // rgba
|
|
V2ColorStart uint32 // rgba
|
|
V2ColorEnd uint32 // rgba
|
|
V2ColorBorder uint32 // rgba
|
|
V2ColorText uint32 // rgba
|
|
}
|