jellyfin/SocketHttpListener/Net/AuthenticationTypes.cs

10 lines
238 B
C#
Raw Normal View History

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