mirror of
https://github.com/MAKS-IT-COM/maksit-certs-ui.git
synced 2026-02-14 09:37:18 +01:00
21 lines
474 B
C#
21 lines
474 B
C#
|
|
using MaksIT.LetsEncrypt.Entities;
|
|
|
|
namespace MaksIT.LetsEncrypt.Models.Responses {
|
|
public class AuthorizationChallengeResponse {
|
|
public OrderIdentifier? Identifier { get; set; }
|
|
|
|
public string? Status { get; set; }
|
|
|
|
public DateTime? Expires { get; set; }
|
|
|
|
public bool Wildcard { get; set; }
|
|
|
|
public AuthorizationChallenge[]? Challenges { get; set; }
|
|
}
|
|
|
|
public class AuthorizeChallenge {
|
|
public string? KeyAuthorization { get; set; }
|
|
}
|
|
}
|