mirror of
https://github.com/owncast/owncast.git
synced 2024-11-21 20:28:15 +03:00
10 lines
240 B
Go
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"`
|
|
}
|