8 lines
130 B
C#
8 lines
130 B
C#
|
|
namespace LANCommander.Server.Settings.Enums;
|
||
|
|
|
||
|
|
public enum AuthenticationProviderType
|
||
|
|
{
|
||
|
|
OAuth2,
|
||
|
|
OpenIdConnect,
|
||
|
|
Saml,
|
||
|
|
}
|