10 lines
221 B
C#
10 lines
221 B
C#
|
namespace IdentityServer.PublishedLanguage.Constants
|
|||
|
{
|
|||
|
public struct AuthenticationStatus
|
|||
|
{
|
|||
|
public const string
|
|||
|
SUCCESS = "SUCCESS",
|
|||
|
BAD_CREDENTIALS = "BAD_CREDENTIALS";
|
|||
|
}
|
|||
|
}
|