Changed ApiKeyLocation enum to use byte as its underlying type instead of the default int, reducing memory usage and improving clarity for serialization scenarios.
8 lines
104 B
C#
8 lines
104 B
C#
namespace ReC.Domain.Constants;
|
|
|
|
public enum ApiKeyLocation : byte
|
|
{
|
|
Header = 0,
|
|
Query = 1
|
|
}
|