mirror of
https://github.com/MAKS-IT-COM/maksit-certs-ui.git
synced 2025-12-31 12:10:03 +01:00
17 lines
198 B
C#
17 lines
198 B
C#
using Newtonsoft.Json;
|
|
|
|
namespace ACMEv2
|
|
{
|
|
|
|
public class AuthorizeChallenge
|
|
{
|
|
[JsonProperty("keyAuthorization")]
|
|
public string KeyAuthorization { get; set; }
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|