mirror of
https://github.com/MAKS-IT-COM/maksit-certs-ui.git
synced 2025-12-31 04:00:03 +01:00
23 lines
415 B
C#
23 lines
415 B
C#
using Newtonsoft.Json;
|
|
|
|
|
|
namespace ACMEv2
|
|
{
|
|
|
|
public class JwsMessage
|
|
{
|
|
[JsonProperty("header")]
|
|
public JwsHeader Header { get; set; }
|
|
|
|
[JsonProperty("protected")]
|
|
public string Protected { get; set; }
|
|
|
|
[JsonProperty("payload")]
|
|
public string Payload { get; set; }
|
|
|
|
[JsonProperty("signature")]
|
|
public string Signature { get; set; }
|
|
}
|
|
|
|
}
|