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 Tags { get; set; } public List Fields { get; set; } } }