emoji.go 176 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. URL string `json:"url"`
  6. }