Files
git.stella-ops.org/src/StellaOps.Cryptography.DependencyInjection/CryptoProviderRegistryOptions.cs
master d3a98326d1 up
2025-10-12 20:37:18 +03:00

15 lines
454 B
C#

using System.Collections.Generic;
namespace StellaOps.Cryptography.DependencyInjection;
/// <summary>
/// Options controlling crypto provider registry ordering and selection.
/// </summary>
public sealed class CryptoProviderRegistryOptions
{
/// <summary>
/// Ordered list of preferred provider names. Providers appearing here are consulted first.
/// </summary>
public IList<string> PreferredProviders { get; } = new List<string>();
}