mirror of
https://github.com/MAKS-IT-COM/maksit-certs-ui.git
synced 2025-12-31 04:00:03 +01:00
17 lines
280 B
C#
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; }
|
|
}
|
|
|
|
}
|