2b2t-queue-tracker/models/player-count.go
2025-06-29 11:20:23 +02:00

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"`
}