mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-12-18 23:48:35 +02:00
e21574a203
New: New releases that fail will be retried a second time after waiting 1hr (configurable) Fixed: Blacklisting releases with the same date and vastly different ages
48 lines
1.6 KiB
C#
48 lines
1.6 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using NzbDrone.Core.MediaFiles;
|
|
|
|
namespace NzbDrone.Core.Configuration
|
|
{
|
|
public interface IConfigService
|
|
{
|
|
IEnumerable<Config> All();
|
|
Dictionary<String, Object> AllWithDefaults();
|
|
void SaveConfigDictionary(Dictionary<string, object> configValues);
|
|
|
|
//Download Client
|
|
String DownloadedEpisodesFolder { get; set; }
|
|
String DownloadClientWorkingFolders { get; set; }
|
|
Int32 DownloadedEpisodesScanInterval { get; set; }
|
|
|
|
//Failed Download Handling (Download client)
|
|
Boolean AutoRedownloadFailed { get; set; }
|
|
Boolean RemoveFailedDownloads { get; set; }
|
|
Boolean EnableFailedDownloadHandling { get; set; }
|
|
Int32 BlacklistGracePeriod { get; set; }
|
|
Int32 BlacklistRetryInterval { get; set; }
|
|
Int32 BlacklistRetryLimit { get; set; }
|
|
|
|
|
|
//Media Management
|
|
Boolean AutoUnmonitorPreviouslyDownloadedEpisodes { get; set; }
|
|
String RecycleBin { get; set; }
|
|
Boolean AutoDownloadPropers { get; set; }
|
|
Boolean CreateEmptySeriesFolders { get; set; }
|
|
FileDateType FileDate { get; set; }
|
|
Boolean SkipFreeSpaceCheckWhenImporting { get; set; }
|
|
|
|
//Permissions (Media Management)
|
|
Boolean SetPermissionsLinux { get; set; }
|
|
String FileChmod { get; set; }
|
|
String FolderChmod { get; set; }
|
|
String ChownUser { get; set; }
|
|
String ChownGroup { get; set; }
|
|
|
|
//Indexers
|
|
Int32 Retention { get; set; }
|
|
Int32 RssSyncInterval { get; set; }
|
|
String ReleaseRestrictions { get; set; }
|
|
}
|
|
}
|