mirror of
https://github.com/Radarr/Radarr.git
synced 2024-11-04 10:02:40 +01:00
12 lines
327 B
C#
12 lines
327 B
C#
namespace NzbDrone.Api.ClientSchema
|
|
{
|
|
public class Field
|
|
{
|
|
public int Order { get; set; }
|
|
public string Name { get; set; }
|
|
public string Label { get; set; }
|
|
public string HelpText { get; set; }
|
|
public object Value { get; set; }
|
|
public string Type { get; set; }
|
|
}
|
|
} |