owncast/models/nameChangeEvent.go
2020-11-12 15:14:59 -08:00

10 lines
269 B
Go

package models
// NameChangeEvent represents a user changing their name in chat.
type NameChangeEvent struct {
OldName string `json:"oldName"`
NewName string `json:"newName"`
Image string `json:"image"`
Type string `json:"type"`
ID string `json:"id"`
}