Files
blivedm-go/message/user.go
2025-10-10 00:04:25 +08:00

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
}