Files
esiur-dotnet/Libraries/Esiur/Resource/IResourceManagersContext.cs
T
2026-07-15 02:42:16 +03:00

15 lines
445 B
C#

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