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:
2025-12-12 13:10:09 +01:00
parent c422de445d
commit 1f250d55b0

View File

@@ -0,0 +1,7 @@
namespace ReC.Domain.Constants;
public enum ApiKeyLocation
{
Header = 0,
Query = 1
}