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