mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2026-04-25 22:59:10 -04:00
18 lines
450 B
C#
18 lines
450 B
C#
namespace NzbDrone.Core.Applications.Lidarr
|
|
{
|
|
public class LidarrField
|
|
{
|
|
public string Name { 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 LidarrField Clone()
|
|
{
|
|
return (LidarrField)MemberwiseClone();
|
|
}
|
|
}
|
|
}
|