rogueserver/defs/daily.go

9 lines
172 B
Go
Raw Normal View History

2024-03-17 10:18:51 -07:00
package defs
type DailyRanking struct {
Rank int `json:"rank"`
Username string `json:"username"`
Score int `json:"score"`
Wave int `json:"wave"`
2024-03-17 10:18:51 -07:00
}