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.

Guild.cs 473 B

123456789101112131415161718
  1. #pragma warning disable CS1591
  2. using Newtonsoft.Json;
  3. using System.Collections.Generic;
  4. namespace Discord.API.Rpc
  5. {
  6. internal class Guild
  7. {
  8. [JsonProperty("id")]
  9. public ulong Id { get; set; }
  10. [JsonProperty("name")]
  11. public string Name { get; set; }
  12. [JsonProperty("icon_url")]
  13. public string IconUrl { get; set; }
  14. [JsonProperty("members")]
  15. public IEnumerable<GuildMember> Members { get; set; }
  16. }
  17. }