mirror of
https://github.com/pagefaultgames/rogueserver.git
synced 2025-02-16 21:51:29 +08:00
9 lines
172 B
Go
9 lines
172 B
Go
package defs
|
|
|
|
type DailyRanking struct {
|
|
Rank int `json:"rank"`
|
|
Username string `json:"username"`
|
|
Score int `json:"score"`
|
|
Wave int `json:"wave"`
|
|
}
|