maksit-certs-ui/LetsEncrypt/ACMEv2/Problem.cs
2019-06-29 18:38:18 +02:00

17 lines
280 B
C#

using Newtonsoft.Json;
namespace ACMEv2
{
public class Problem
{
[JsonProperty("type")]
public string Type { get; set; }
[JsonProperty("detail")]
public string Detail { get; set; }
public string RawJson { get; set; }
}
}