14 lines
555 B
C#
14 lines
555 B
C#
namespace StellaOps.Gateway.WebService.Middleware;
|
|
|
|
public static class GatewayContextKeys
|
|
{
|
|
public const string TenantId = "Gateway.TenantId";
|
|
public const string ProjectId = "Gateway.ProjectId";
|
|
public const string Actor = "Gateway.Actor";
|
|
public const string Scopes = "Gateway.Scopes";
|
|
public const string DpopThumbprint = "Gateway.DpopThumbprint";
|
|
public const string MtlsThumbprint = "Gateway.MtlsThumbprint";
|
|
public const string CnfJson = "Gateway.CnfJson";
|
|
public const string IsAnonymous = "Gateway.IsAnonymous";
|
|
}
|