Sonarr/NzbDrone.Common/Model/AuthenticationType.cs

11 lines
149 B
C#
Raw Normal View History

2011-11-13 07:27:16 +00:00
using System.Linq;
namespace NzbDrone.Common.Model
{
public enum AuthenticationType
{
Anonymous = 0,
Windows = 1
}
}