13 lines
277 B
C#
13 lines
277 B
C#
using Microsoft.AspNetCore.Mvc;
|
|
using WorkFlow.API.Filters;
|
|
|
|
namespace WorkFlow.API.Attributes
|
|
{
|
|
public class APIKeyAuthAttribute : ServiceFilterAttribute
|
|
{
|
|
public APIKeyAuthAttribute()
|
|
: base(typeof(APIKeyAuthFilter))
|
|
{
|
|
}
|
|
}
|
|
} |