owncast/models/userEvent.go
Gabe Kangas b80ccc4966
WIP
2024-03-25 09:04:05 -07:00

10 lines
240 B
Go

package models
import "time"
// UserEvent is an event with an associated user.
type UserEvent struct {
User *User `json:"user"`
HiddenAt *time.Time `json:"hiddenAt,omitempty"`
ClientID uint `json:"clientId,omitempty"`
}