using System; using System.Collections.Generic; using System.IO; using System.Linq; using System.Net.Http; using System.Security.Cryptography; using System.Security.Cryptography.X509Certificates; using System.Text; using System.Threading; using System.Threading.Tasks; using Newtonsoft.Json; using Newtonsoft.Json.Linq; namespace ACMEv2 { public class AuthorizationChallenge { [JsonProperty("url")] public Uri Url { get; set; } [JsonProperty("type")] public string Type { get; set; } [JsonProperty("status")] public string Status { get; set; } [JsonProperty("token")] public string Token { get; set; } } }