This commit is contained in:
2026-07-15 02:42:16 +03:00
parent be2a24bfd9
commit 3a1b95dbc5
27 changed files with 1767 additions and 197 deletions
@@ -0,0 +1,14 @@
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; }
}