mirror of
https://github.com/owncast/owncast.git
synced 2024-11-22 21:03:19 +03:00
11 lines
267 B
Go
11 lines
267 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"`
|
||
|
}
|