mirror of
https://github.com/owncast/owncast.git
synced 2024-11-21 20:28:15 +03:00
17 lines
555 B
Go
17 lines
555 B
Go
package models
|
|
|
|
import "github.com/owncast/owncast/utils"
|
|
|
|
// 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 *utils.NullTime `json:"lastConnectTime"`
|
|
LastDisconnectTime *utils.NullTime `json:"lastDisconnectTime"`
|
|
|
|
VersionNumber string `json:"versionNumber"`
|
|
StreamTitle string `json:"streamTitle"`
|
|
}
|