owncast/core/chat/events/connectedClientInfo.go

10 lines
212 B
Go
Raw Normal View History

package events
import "github.com/owncast/owncast/models"
// ConnectedClientInfo represents the information about a connected client.
type ConnectedClientInfo struct {
User *models.User `json:"user"`
Event
}