mirror of
https://github.com/MAKS-IT-COM/maksit-certs-ui.git
synced 2026-02-14 09:37:18 +01:00
18 lines
401 B
C#
18 lines
401 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace LetsEncrypt.Entities
|
|
{
|
|
public class RegistrationCache
|
|
{
|
|
public readonly Dictionary<string, CertificateCache> CachedCerts = new Dictionary<string, CertificateCache>(StringComparer.OrdinalIgnoreCase);
|
|
public byte[] AccountKey;
|
|
public string Id;
|
|
public Jwk Key;
|
|
public Uri Location;
|
|
}
|
|
|
|
|
|
|
|
}
|