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