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.

GetChannelsResponse.cs 282 B

123456789101112
  1. #pragma warning disable CS1591
  2. using Newtonsoft.Json;
  3. using System.Collections.Generic;
  4. namespace Discord.API.Rpc
  5. {
  6. internal class GetChannelsResponse
  7. {
  8. [JsonProperty("channels")]
  9. public IReadOnlyCollection<ChannelSummary> Channels { get; set; }
  10. }
  11. }