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.

AuthenticateResponse.cs 479 B

123456789101112131415161718
  1. #pragma warning disable CS1591
  2. using Newtonsoft.Json;
  3. using System;
  4. namespace Discord.API.Rpc
  5. {
  6. internal class AuthenticateResponse
  7. {
  8. [JsonProperty("application")]
  9. public Application Application { get; set; }
  10. [JsonProperty("expires")]
  11. public DateTimeOffset Expires { get; set; }
  12. [JsonProperty("user")]
  13. public User User { get; set; }
  14. [JsonProperty("scopes")]
  15. public string[] Scopes { get; set; }
  16. }
  17. }