8 lines
180 B
Go
8 lines
180 B
Go
package models
|
|
|
|
// CustomEmoji represents an image that can be used in chat as a custom emoji.
|
|
type CustomEmoji struct {
|
|
Name string `json:"name"`
|
|
Emoji string `json:"emoji"`
|
|
}
|