1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2025-01-19 10:54:05 +02:00

16 lines
469 B
C#
Raw Normal View History

2013-06-13 00:20:33 -07:00
using System.Collections.Generic;
namespace NzbDrone.Api.ClientSchema
2013-04-30 23:43:14 -07:00
{
public class Field
{
public int Order { get; set; }
public string Name { get; set; }
public string Label { get; set; }
public string HelpText { get; set; }
public string HelpLink { get; set; }
public object Value { get; set; }
2013-05-19 21:19:54 -07:00
public string Type { get; set; }
2013-06-13 00:20:33 -07:00
public List<SelectOption> SelectOptions { get; set; }
2013-04-30 23:43:14 -07:00
}
}