1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2026-04-17 21:26:13 -04:00
Files
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
}
}