1
0
mirror of https://github.com/Mrs4s/MiraiGo.git synced 2025-05-05 03:23:50 +08:00
MiraiGo/client/vip.go
wdvxdr 49156b446a feature: GetVipInfo
添加 获取会员信息的接口
2020-09-05 23:06:53 +08:00

13 lines
171 B
Go

package client
type (
VipInfo struct {
Uin int64
Name string
Level int
LevelSpeed float64
VipLevel string
VipGrowthSpeed int
VipGrowthTotal int
}
)