8 lines
236 B
C#
8 lines
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";
|
||
|
|
}
|