Select type added for client schema

This commit is contained in:
Mark McDowall 2013-06-13 00:20:33 -07:00
commit ca334ef664
10 changed files with 76 additions and 5 deletions

View file

@ -14,12 +14,14 @@ namespace NzbDrone.Core.Annotations
public string Label { get; set; }
public string HelpText { get; set; }
public FieldType Type { get; set; }
public Type SelectOptions { get; set; }
}
public enum FieldType
{
Textbox,
Password,
Checkbox
Checkbox,
Select
}
}