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.

Connection.cs 557 B

123456789101112131415161718192021
  1. #pragma warning disable CS1591
  2. using Newtonsoft.Json;
  3. using System.Collections.Generic;
  4. namespace Discord.API
  5. {
  6. internal class Connection
  7. {
  8. [JsonProperty("id")]
  9. public string Id { get; set; }
  10. [JsonProperty("type")]
  11. public string Type { get; set; }
  12. [JsonProperty("name")]
  13. public string Name { get; set; }
  14. [JsonProperty("revoked")]
  15. public bool Revoked { get; set; }
  16. [JsonProperty("integrations")]
  17. public IReadOnlyCollection<ulong> Integrations { get; set; }
  18. }
  19. }