maksit-certs-ui/src/LetsEncrypt/Models/Responses/AuthorizationChallengeChallenge.cs
2024-06-27 01:13:33 +02:00

14 lines
268 B
C#

using System;
namespace MaksIT.LetsEncrypt.Models.Responses;
public class AuthorizationChallengeChallenge
{
public Uri? Url { get; set; }
public string? Type { get; set; }
public string? Status { get; set; }
public string? Token { get; set; }
}