From b8c30d520e17685d55e574daea4b6264dfbb8ee0 Mon Sep 17 00:00:00 2001 From: TekH Date: Mon, 15 Dec 2025 14:22:13 +0100 Subject: [PATCH] Set EndpointAuthType enum underlying type to byte Explicitly define EndpointAuthType as a byte-based enum for improved memory efficiency and better interoperability with systems requiring a specific underlying type. --- src/ReC.Domain/Constants/EndpointAuthType.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ReC.Domain/Constants/EndpointAuthType.cs b/src/ReC.Domain/Constants/EndpointAuthType.cs index 3a4e416..463401d 100644 --- a/src/ReC.Domain/Constants/EndpointAuthType.cs +++ b/src/ReC.Domain/Constants/EndpointAuthType.cs @@ -1,6 +1,6 @@ namespace ReC.Domain.Constants; -public enum EndpointAuthType +public enum EndpointAuthType : byte { NoAuth = 0, ApiKey = 1,