namespace Galaeth.Services.Constants;
///
/// Collection of standard error codes.
///
public static class ServiceErrorCodes
{
///
/// Username is already taken.
///
public const string UsernameTaken = "username-taken";
///
/// Email address already registered to a user.
///
public const string EmailAlreadyRegistered = "email-already-registered";
///
/// Invalid login credentials were provided.
///
public const string InvalidCredentials = "invalid-credentials";
///
/// This user is suspended from logging in.
///
public const string SuspendedUser = "user-suspended";
///
/// This user is banned from logging in.
///
public const string BannedUser = "user-banned";
///
/// This user's account is not yet activated.
///
public const string PendingActivation = "pending-activation";
}