You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
429 B
16 lines
429 B
package models |
|
|
|
import ( |
|
"time" |
|
) |
|
|
|
//Status represents the status of the system |
|
type Status struct { |
|
Online bool `json:"online"` |
|
ViewerCount int `json:"viewerCount"` |
|
OverallMaxViewerCount int `json:"overallMaxViewerCount"` |
|
SessionMaxViewerCount int `json:"sessionMaxViewerCount"` |
|
|
|
LastConnectTime time.Time `json:"lastConnectTime"` |
|
LastDisconnectTime time.Time `json:"lastDisconnectTime"` |
|
}
|
|
|