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 JwsMessage { [JsonProperty("header")] public JwsHeader Header { get; set; } [JsonProperty("protected")] public string Protected { get; set; } [JsonProperty("payload")] public string Payload { get; set; } [JsonProperty("signature")] public string Signature { get; set; } } }