LANCommander/LANCommander.Server/Models/AuthenticationProviderActionType.cs

8 lines
236 B
C#
Raw Normal View History

2024-12-30 21:04:13 -06:00
namespace LANCommander.Server.Models;
public static class AuthenticationProviderActionType
{
public const string Login = "Login";
public const string Register = "Register";
public const string AccountLink = "AccountLink";
}