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