Files
Prowlarr/src/NzbDrone.Core/Applications/Mylar/MylarField.cs
T
2021-08-14 23:50:47 -04:00

23 lines
658 B
C#

namespace NzbDrone.Core.Applications.Mylar
{
public class MylarField
{
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 HelpLink { get; set; }
public object Value { get; set; }
public string Type { get; set; }
public bool Advanced { get; set; }
public string Section { get; set; }
public string Hidden { get; set; }
public MylarField Clone()
{
return (MylarField)MemberwiseClone();
}
}
}