jellyfin/SocketHttpListener/Net/AuthenticationTypes.cs

10 lines
235 B
C#
Raw Normal View History

namespace SocketHttpListener.Net
2018-09-12 19:26:21 +02:00
{
internal class AuthenticationTypes
{
internal const string NTLM = "NTLM";
internal const string Negotiate = "Negotiate";
internal const string Basic = "Basic";
}
}