Lidarr/src/NzbDrone.Core/Authentication/AuthenticationType.cs

10 lines
148 B
C#
Raw Normal View History

2015-01-26 02:03:21 +00:00
namespace NzbDrone.Core.Authentication
{
public enum AuthenticationType
{
None = 0,
Basic = 1,
Forms = 2
}
}