mirror of
https://dev.azure.com/tstanciu94/Tuitio/_git/Tuitio
synced 2025-03-28 23:52:20 +02:00
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";
|
|
}
|
|
}
|