Files
certmgr/certmgr/Jobs/CertStore.cs
2025-11-02 18:32:52 +01:00

24 lines
489 B
C#

using System.Diagnostics;
using CertMgr.Core.Storage;
namespace CertMgr.Jobs;
public sealed class CertStore
{
public CertStore(CertStoreLocation location, CertStoreName name)
{
Location = location;
Name = name;
}
public CertStoreLocation Location { [DebuggerStepThrough] get; }
public CertStoreName Name { [DebuggerStepThrough] get; }
public override string ToString()
{
return string.Format("{0}/{1}", Location, Name);
}
}