Files
Prowlarr-Prowlarr/src/NzbDrone.Core/Applications/Radarr/RadarrIndexer.cs
2020-10-22 16:45:25 -04:00

21 lines
706 B
C#

using System.Collections.Generic;
namespace NzbDrone.Core.Applications.Radarr
{
public class RadarrIndexer
{
public int Id { get; set; }
public bool EnableRss { get; set; }
public bool EnableAutomaticSearch { get; set; }
public bool EnableInteractiveSearch { get; set; }
public int Priority { get; set; }
public string Name { get; set; }
public string ImplementationName { get; set; }
public string Implementation { get; set; }
public string ConfigContract { get; set; }
public string InfoLink { get; set; }
public HashSet<int> Tags { get; set; }
public List<RadarrField> Fields { get; set; }
}
}