Files
Prowlarr/src/Prowlarr.Http/ClientSchema/Field.cs
T
Mark McDowall b36d793d85 Allow decimals in number inputs
(cherry picked from commit 7f5ddff568ce9f87bd45420cbd36690b190bd633)
2023-08-19 13:49:18 +03:00

32 lines
974 B
C#

using System.Collections.Generic;
using NzbDrone.Core.Annotations;
namespace Prowlarr.Http.ClientSchema
{
public class Field
{
public int Order { get; set; }
public string Name { get; set; }
public string Label { get; set; }
public string Unit { get; set; }
public string HelpText { get; set; }
public string HelpTextWarning { get; set; }
public string HelpLink { get; set; }
public object Value { get; set; }
public string Type { get; set; }
public bool Advanced { get; set; }
public List<SelectOption> SelectOptions { get; set; }
public string SelectOptionsProviderAction { get; set; }
public string Section { get; set; }
public string Hidden { get; set; }
public string Placeholder { get; set; }
public bool IsFloat { get; set; }
public Field Clone()
{
return (Field)MemberwiseClone();
}
}
}