LANCommander/LANCommander.Server/Models/AuthenticationProviderActionType.cs
2024-12-30 21:04:13 -06:00

8 lines
No EOL
236 B
C#

namespace LANCommander.Server.Models;
public static class AuthenticationProviderActionType
{
public const string Login = "Login";
public const string Register = "Register";
public const string AccountLink = "AccountLink";
}