diff --git a/WorkFlow.API/Attributes/ApiKeyAuthAttribute.cs b/WorkFlow.API/Attributes/ApiKeyAuthAttribute.cs new file mode 100644 index 0000000..fc7f7ac --- /dev/null +++ b/WorkFlow.API/Attributes/ApiKeyAuthAttribute.cs @@ -0,0 +1,13 @@ +using Microsoft.AspNetCore.Mvc; +using WorkFlow.API.Filters; + +namespace WorkFlow.API.Attributes +{ + public class ApiKeyAuthAttribute : ServiceFilterAttribute + { + public ApiKeyAuthAttribute() + : base(typeof(ApiKeyAuthFilter)) + { + } + } +} \ No newline at end of file