2020-07-29 06:30:03 +02:00
|
|
|
package models
|
|
|
|
|
2020-11-13 00:14:59 +01:00
|
|
|
// NameChangeEvent represents a user changing their name in chat.
|
2020-07-29 06:30:03 +02:00
|
|
|
type NameChangeEvent struct {
|
|
|
|
OldName string `json:"oldName"`
|
|
|
|
NewName string `json:"newName"`
|
|
|
|
Image string `json:"image"`
|
|
|
|
Type string `json:"type"`
|
|
|
|
ID string `json:"id"`
|
|
|
|
}
|