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; } } }