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
@@ -7,7 +7,10 @@ namespace Esiur.Resource;
/// Associates a registered auditing-manager implementation with a resource type.
/// </summary>
[AttributeUsage(AttributeTargets.Class, AllowMultiple = true, Inherited = true)]
public sealed class AuditingManagerAttribute<T> : Attribute
public sealed class AuditingManagerAttribute<T> : ResourceManagerAttribute
where T : IAuditingManager
{
public AuditingManagerAttribute() : base(typeof(T))
{
}
}