Files
esiur-dotnet/Libraries/Esiur/Resource/Attributes/RateControlManagerAttribute.cs
T
2026-07-14 17:26:51 +03:00

14 lines
372 B
C#

using Esiur.Security.Management;
using System;
namespace Esiur.Resource;
/// <summary>
/// Associates a registered rate-control-manager implementation with a resource type.
/// </summary>
[AttributeUsage(AttributeTargets.Class, AllowMultiple = true, Inherited = true)]
public sealed class RateControlManagerAttribute<T> : Attribute
where T : IRateControlManager
{
}