1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2024-12-16 11:37:58 +02:00
Sonarr/NzbDrone.Common/Model/AuthenticationType.cs
2013-05-21 17:58:57 -07:00

11 lines
139 B
C#

using System.Linq;
namespace NzbDrone.Common.Model
{
public enum AuthenticationType
{
Anonymous,
Basic
}
}