Files
deepdrft/DeepDrftAPI/Middleware/ApiKeyAuthorizeAttribute.cs
T
2026-05-25 10:38:36 -04:00

7 lines
214 B
C#

namespace DeepDrftAPI.Middleware
{
[AttributeUsage(AttributeTargets.Class | AttributeTargets.Method, AllowMultiple = false, Inherited = true)]
public class ApiKeyAuthorizeAttribute : Attribute
{
}
}