Add ApiKeyLocation enum for API key placement options
Introduced the ApiKeyLocation enum in the ReC.Domain.Constants namespace to specify API key locations, supporting both Header and Query options.
This commit is contained in:
7
src/ReC.Domain/Constants/ApiKeyLocation.cs
Normal file
7
src/ReC.Domain/Constants/ApiKeyLocation.cs
Normal file
@@ -0,0 +1,7 @@
|
||||
namespace ReC.Domain.Constants;
|
||||
|
||||
public enum ApiKeyLocation
|
||||
{
|
||||
Header = 0,
|
||||
Query = 1
|
||||
}
|
||||
Reference in New Issue
Block a user