17 lines
373 B
C#
17 lines
373 B
C#
using System.Diagnostics;
|
|
|
|
namespace CertMgr.Core.Storage;
|
|
|
|
public sealed class FileStorageContext : StorageContext
|
|
{
|
|
public FileStorageContext(string fileFullPath, FileStoreMode mode)
|
|
{
|
|
Path = fileFullPath;
|
|
Mode = mode;
|
|
}
|
|
|
|
public string Path { [DebuggerStepThrough] get; }
|
|
|
|
public FileStoreMode Mode { [DebuggerStepThrough] get; }
|
|
}
|