From 961b87de3d740832637a40fd3c1cdacab6e6eb46 Mon Sep 17 00:00:00 2001 From: TekH Date: Fri, 12 Dec 2025 13:57:52 +0100 Subject: [PATCH] Add EndpointAuthType enum for endpoint authentication types Introduced the EndpointAuthType enum in the ReC.Domain.Constants namespace to represent various endpoint authentication methods, including NoAuth, ApiKey, BearerToken, JwtBearer, BasicAuth, DigestAuth, OAuth1, OAuth2, AwsSignature, and NtlmAuth. Each type is assigned a unique integer value for clear identification. --- src/ReC.Domain/Constants/EndpointAuthType.cs | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 src/ReC.Domain/Constants/EndpointAuthType.cs diff --git a/src/ReC.Domain/Constants/EndpointAuthType.cs b/src/ReC.Domain/Constants/EndpointAuthType.cs new file mode 100644 index 0000000..3a4e416 --- /dev/null +++ b/src/ReC.Domain/Constants/EndpointAuthType.cs @@ -0,0 +1,15 @@ +namespace ReC.Domain.Constants; + +public enum EndpointAuthType +{ + NoAuth = 0, + ApiKey = 1, + BearerToken = 2, + JwtBearer = 3, + BasicAuth = 4, + DigestAuth = 5, + OAuth1 = 6, + OAuth2 = 7, + AwsSignature = 8, + NtlmAuth = 9 +}