ps/Modules/Alkami.Ops.Certificates/Data/StoreInfo.cs
2023-05-30 22:51:22 -07:00

14 lines
334 B
C#

namespace Alkami.Ops.Certificates.Data
{
internal class StoreInfo
{
public readonly string StoreName;
public readonly bool HasPrivateKey;
public StoreInfo(string storeName, bool hasPrivateKey)
{
StoreName = storeName;
HasPrivateKey = hasPrivateKey;
}
}
}