Files
ReC/src/ReC.Domain/Constants/ApiKeyLocation.cs
TekH a24ec1ab3e 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.
2025-12-15 14:27:45 +01:00

8 lines
104 B
C#

namespace ReC.Domain.Constants;
public enum ApiKeyLocation : byte
{
Header = 0,
Query = 1
}