mirror of
https://github.com/owncast/owncast.git
synced 2024-10-10 19:16:02 +00:00
11 lines
240 B
Go
11 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"`
|
|
}
|