Files
xCommons/Constants/XAuthentication.cs
T
2024-01-25 04:39:39 +03:30

9 lines
361 B
C#

namespace xCommons.Constants {
public partial struct XAuthentication {
public const string JWT = "jwt";
public const string BEARER = "Bearer";
public const string TOKEN = "token";
public const string INTROSPECTION = "introspection";
public const string IDENTITY_SERVER_LOCAL_API = "IdentityServerAccessToken";
}
}