namespace StellaOps.Cryptography.Plugin.Pkcs11Gost; internal sealed class Pkcs11SessionOptions { public string LibraryPath { get; init; } = string.Empty; public string? SlotId { get; init; } public string? TokenLabel { get; init; } public string? UserPin { get; init; } public string? UserPinEnvironmentVariable { get; init; } public string? PrivateKeyLabel { get; init; } public string? PublicKeyLabel { get; init; } }