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

11 lines
139 B
C#
Raw Normal View History

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