mirror of
https://github.com/MAKS-IT-COM/maksit-certs-ui.git
synced 2025-12-31 04:00:03 +01:00
23 lines
422 B
C#
23 lines
422 B
C#
using System;
|
|
using Newtonsoft.Json;
|
|
|
|
namespace LetsEncrypt.Entities
|
|
{
|
|
public class AuthorizationChallenge
|
|
{
|
|
[JsonProperty("url")]
|
|
public Uri Url { get; set; }
|
|
|
|
[JsonProperty("type")]
|
|
public string Type { get; set; }
|
|
|
|
[JsonProperty("status")]
|
|
public string Status { get; set; }
|
|
|
|
[JsonProperty("token")]
|
|
public string Token { get; set; }
|
|
|
|
}
|
|
|
|
}
|