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.
This commit is contained in:
2025-12-15 14:22:13 +01:00
parent f69f323542
commit b8c30d520e

View File

@@ -1,6 +1,6 @@
namespace ReC.Domain.Constants; namespace ReC.Domain.Constants;
public enum EndpointAuthType public enum EndpointAuthType : byte
{ {
NoAuth = 0, NoAuth = 0,
ApiKey = 1, ApiKey = 1,