Sonarr/NzbDrone.Common/Model/AuthenticationType.cs

11 lines
139 B
C#
Raw Normal View History

2011-11-13 07:27:16 +00:00
using System.Linq;
namespace NzbDrone.Common.Model
{
public enum AuthenticationType
{
2013-05-22 00:58:57 +00:00
Anonymous,
Basic
2011-11-13 07:27:16 +00:00
}
}