2020-06-22 20:11:56 -05:00
|
|
|
package models
|
2020-06-02 17:35:49 -07:00
|
|
|
|
2020-06-22 20:11:56 -05:00
|
|
|
//Status represents the status of the system
|
2020-06-02 17:35:49 -07:00
|
|
|
type Status struct {
|
2020-06-10 23:52:55 -07:00
|
|
|
Online bool `json:"online"`
|
|
|
|
ViewerCount int `json:"viewerCount"`
|
|
|
|
OverallMaxViewerCount int `json:"overallMaxViewerCount"`
|
|
|
|
SessionMaxViewerCount int `json:"sessionMaxViewerCount"`
|
2020-06-02 17:35:49 -07:00
|
|
|
}
|