emoji.go 180 B

1234567
  1. package models
  2. // CustomEmoji represents an image that can be used in chat as a custom emoji.
  3. type CustomEmoji struct {
  4. Name string `json:"name"`
  5. Emoji string `json:"emoji"`
  6. }