mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2026-04-22 22:34:53 -04:00
24 lines
772 B
C#
24 lines
772 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using NzbDrone.Core.Indexers.Cardigann;
|
|
using NzbDrone.Core.ThingiProvider;
|
|
|
|
namespace NzbDrone.Core.Indexers
|
|
{
|
|
public class IndexerDefinition : ProviderDefinition
|
|
{
|
|
public string BaseUrl { get; set; }
|
|
public DownloadProtocol Protocol { get; set; }
|
|
public IndexerPrivacy Privacy { get; set; }
|
|
public bool SupportsRss { get; set; }
|
|
public bool SupportsSearch { get; set; }
|
|
public IndexerCapabilities Capabilities { get; set; }
|
|
public int Priority { get; set; } = 25;
|
|
public DateTime Added { get; set; }
|
|
|
|
public IndexerStatus Status { get; set; }
|
|
|
|
public List<SettingsField> ExtraFields { get; set; } = new List<SettingsField>();
|
|
}
|
|
}
|