11 lines
251 B
C#
11 lines
251 B
C#
|
|
namespace MCPForUnity.Editor.Constants
|
||
|
|
{
|
||
|
|
/// <summary>
|
||
|
|
/// Protocol-level constants for API key authentication.
|
||
|
|
/// </summary>
|
||
|
|
internal static class AuthConstants
|
||
|
|
{
|
||
|
|
internal const string ApiKeyHeader = "X-API-Key";
|
||
|
|
}
|
||
|
|
}
|