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.

RpcConfig.cs 381 B

123456789101112131415
  1. #pragma warning disable CS1591
  2. using Newtonsoft.Json;
  3. namespace Discord.API.Rpc
  4. {
  5. internal class RpcConfig
  6. {
  7. [JsonProperty("cdn_host")]
  8. public string CdnHost { get; set; }
  9. [JsonProperty("api_endpoint")]
  10. public string ApiEndpoint { get; set; }
  11. [JsonProperty("environment")]
  12. public string Environment { get; set; }
  13. }
  14. }