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.

GetGuildsResponse.cs 221 B

1234567891011
  1. #pragma warning disable CS1591
  2. using Newtonsoft.Json;
  3. namespace Discord.API.Rpc
  4. {
  5. internal class GetGuildsResponse
  6. {
  7. [JsonProperty("guilds")]
  8. public GuildSummary[] Guilds { get; set; }
  9. }
  10. }