24 lines
489 B
C#
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);
|
|
}
|
|
}
|