mirror of
https://github.com/esiur/esiur-dotnet.git
synced 2026-07-30 17:30:40 +00:00
15 lines
445 B
C#
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; }
|
|
}
|