2024-04-29 12:32:58 -07:00
|
|
|
// Copyright (C) 2024 Pagefault Games - All Rights Reserved
|
|
|
|
// https://github.com/pagefaultgames
|
|
|
|
|
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"`
|
2024-03-17 17:48:49 -07:00
|
|
|
Wave int `json:"wave"`
|
2024-03-17 10:18:51 -07:00
|
|
|
}
|