9 lines
361 B
C#
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";
|
|
}
|
|
} |