10 lines
272 B
C#
10 lines
272 B
C#
namespace AAIntegration.SimmonsBank.API.Configs;
|
|
|
|
using Microsoft.AspNetCore.Authentication;
|
|
|
|
public class ApiKeyAuthenticationOptions : AuthenticationSchemeOptions
|
|
{
|
|
public const string DefaultScheme = "ClientKey";
|
|
public const string HeaderName = "x-api-key";
|
|
}
|