mirror of
https://github.com/esiur/esiur-dotnet.git
synced 2026-07-30 17:30:40 +00:00
14 lines
362 B
C#
14 lines
362 B
C#
using Esiur.Security.Management;
|
|
using System;
|
|
|
|
namespace Esiur.Resource;
|
|
|
|
/// <summary>
|
|
/// Associates a registered auditing-manager implementation with a resource type.
|
|
/// </summary>
|
|
[AttributeUsage(AttributeTargets.Class, AllowMultiple = true, Inherited = true)]
|
|
public sealed class AuditingManagerAttribute<T> : Attribute
|
|
where T : IAuditingManager
|
|
{
|
|
}
|