You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

Emoji.cs 501 B

12345678910111213141516171819
  1. #pragma warning disable CS1591
  2. using Newtonsoft.Json;
  3. namespace Discord.API
  4. {
  5. internal class Emoji
  6. {
  7. [JsonProperty("id")]
  8. public ulong? Id { get; set; }
  9. [JsonProperty("name")]
  10. public string Name { get; set; }
  11. [JsonProperty("roles")]
  12. public ulong[] Roles { get; set; }
  13. [JsonProperty("require_colons")]
  14. public bool RequireColons { get; set; }
  15. [JsonProperty("managed")]
  16. public bool Managed { get; set; }
  17. }
  18. }