Set ApiKeyLocation enum underlying type to byte

Changed ApiKeyLocation enum to use byte as its underlying type instead of the default int, reducing memory usage and improving clarity for serialization scenarios.
This commit is contained in:
2025-12-15 14:27:45 +01:00
parent b8c30d520e
commit a24ec1ab3e

View File

@@ -1,6 +1,6 @@
namespace ReC.Domain.Constants;
public enum ApiKeyLocation
public enum ApiKeyLocation : byte
{
Header = 0,
Query = 1