mirror of
https://github.com/TomasiDeveloping/PlayerManagement.git
synced 2026-04-16 17:22:21 +00:00
12 lines
475 B
C#
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");
|
|
} |