mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2025-09-17 17:14:18 +02:00
21 lines
706 B
C#
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; }
|
|
}
|
|
}
|