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