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

@ -1,4 +1,6 @@
namespace NzbDrone.Api.ClientSchema
using System.Collections.Generic;
namespace NzbDrone.Api.ClientSchema
{
public class Field
{
@ -8,5 +10,6 @@
public string HelpText { get; set; }
public object Value { get; set; }
public string Type { get; set; }
public List<SelectOption> SelectOptions { get; set; }
}
}