maksit-certs-ui/v1.0/LetsEncrypt/ACMEv2/OrderIdentifier.cs

17 lines
243 B
C#

using Newtonsoft.Json;
namespace ACMEv2
{
public class OrderIdentifier
{
[JsonProperty("type")]
public string Type { get; set; }
[JsonProperty("value")]
public string Value { get; set; }
}
}