9 lines
266 B
Go
9 lines
266 B
Go
package models
|
|
|
|
type PlayerCount struct {
|
|
// The number of minutes elapsed since January 1, 1970 UTC.
|
|
Time int64 `json:"time"`
|
|
Playing int `json:"playing"`
|
|
NormalQueue int `json:"normal_queue"`
|
|
PriorityQueue int `json:"priority_queue"`
|
|
}
|