mirror of
https://github.com/Sonarr/Sonarr.git
synced 2025-02-10 12:08:03 +02:00
14 lines
209 B
C#
14 lines
209 B
C#
|
using System;
|
||
|
using System.Collections.Generic;
|
||
|
using System.Linq;
|
||
|
using System.Text;
|
||
|
|
||
|
namespace NzbDrone.Model
|
||
|
{
|
||
|
public enum AuthenticationType
|
||
|
{
|
||
|
Anonymous = 0,
|
||
|
Windows = 1
|
||
|
}
|
||
|
}
|