10 lines
184 B
Go
10 lines
184 B
Go
package dto
|
|
|
|
// 首页榜单对象
|
|
// TopType consume=贡献榜 charm=魅力榜
|
|
type TopUsersDTO struct {
|
|
TopType string
|
|
TopUserList []ChatroomListUserDTO
|
|
IconUrl string
|
|
}
|