mirror of
https://github.com/lidarr/lidarr.git
synced 2025-07-14 17:13:49 -07:00
10 lines
139 B
C#
10 lines
139 B
C#
using System.Linq;
|
|
|
|
namespace NzbDrone.Common.Model
|
|
{
|
|
public enum AuthenticationType
|
|
{
|
|
Anonymous,
|
|
Basic
|
|
}
|
|
}
|