Files
certmgr/certmgr/Core/Storage/FileStorageContext.cs
2025-11-02 15:52:04 +01:00

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