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.

EmbedVideo.cs 357 B

123456789101112131415
  1. #pragma warning disable CS1591
  2. using Newtonsoft.Json;
  3. namespace Discord.API
  4. {
  5. internal class EmbedVideo
  6. {
  7. [JsonProperty("url")]
  8. public string Url { get; set; }
  9. [JsonProperty("height")]
  10. public Optional<int> Height { get; set; }
  11. [JsonProperty("width")]
  12. public Optional<int> Width { get; set; }
  13. }
  14. }