8 lines
183 B
C#
8 lines
183 B
C#
|
|
namespace Books.Api.Authentication;
|
||
|
|
|
||
|
|
public static class ApiKeyDefaults
|
||
|
|
{
|
||
|
|
public const string AuthenticationScheme = "ApiKey";
|
||
|
|
public const string HeaderName = "x-api-key";
|
||
|
|
}
|