mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2026-04-18 21:55:12 -04:00
23 lines
658 B
C#
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();
|
|
}
|
|
}
|
|
}
|