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