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.

SelectChannelParams.cs 304 B

12345678910111213
  1. #pragma warning disable CS1591
  2. using Newtonsoft.Json;
  3. namespace Discord.API.Rpc
  4. {
  5. internal class SelectChannelParams
  6. {
  7. [JsonProperty("channel_id")]
  8. public ulong? ChannelId { get; set; }
  9. [JsonProperty("force")]
  10. public Optional<bool> Force { get; set; }
  11. }
  12. }