using Esiur.Security.Management; using System.Collections.Generic; namespace Esiur.Resource; /// /// Optional trusted creation context that binds registered managers to a resource. /// Keeping this separate from preserves compatibility /// with existing context implementations. /// public interface IResourceManagersContext { IReadOnlyList ResourceManagers { get; } }