PlayerManagement/Application/Errors/AuthenticationErrors.cs
Tomasi - Developing a8a032c1d7 ..
2024-10-10 07:43:07 +02:00

12 lines
475 B
C#

namespace Application.Errors;
public static class AuthenticationErrors
{
public static readonly Error LoginFailed = new("Error.Authentication.LoginFailed", "Email or password incorrect");
public static readonly Error RegisterFailed =
new("Error.Authentication.RegisterFailed", "Could not create an account");
public static readonly Error AllianceAlreadyExists =
new("Error.Authentication.AllianceAlreadyExists", "Alliance already exists");
}