11 lines
149 B
C#
11 lines
149 B
C#
|
using System.Linq;
|
|||
|
|
|||
|
namespace NzbDrone.Common.Model
|
|||
|
{
|
|||
|
public enum AuthenticationType
|
|||
|
{
|
|||
|
Anonymous = 0,
|
|||
|
Windows = 1
|
|||
|
}
|
|||
|
}
|