1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2026-04-25 22:46:31 -04:00
This commit is contained in:
Mark McDowall
2017-02-10 22:46:39 -08:00
committed by Taloth Saldono
parent 211f3769e1
commit 7297c1b8e4
399 changed files with 10618 additions and 1043 deletions
@@ -1,4 +1,4 @@
using System;
using System;
namespace NzbDrone.Core.Annotations
{
@@ -18,11 +18,13 @@ namespace NzbDrone.Core.Annotations
public FieldType Type { get; set; }
public bool Advanced { get; set; }
public Type SelectOptions { get; set; }
public string Section { get; set; }
}
public enum FieldType
{
Textbox,
Number,
Password,
Checkbox,
Select,
@@ -32,6 +34,7 @@ namespace NzbDrone.Core.Annotations
Tag,
Action,
Url,
Captcha
Captcha,
OAuth
}
}