mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-12-18 23:48:35 +02:00
77b83b521e
New: Download client UI matches other settings Fixed: Prevent drone factory folder from being set to invalid paths/root path for series Fixed: Switching pages in settings will not hide changes Fixed: Test download clients Fixed: Settings are validated before saving
40 lines
1.3 KiB
C#
40 lines
1.3 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
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; }
|
|
|
|
//Failed Download Handling (Download client)
|
|
Boolean AutoRedownloadFailed { get; set; }
|
|
Boolean RemoveFailedDownloads { get; set; }
|
|
Boolean EnableFailedDownloadHandling { get; set; }
|
|
|
|
//Media Management
|
|
Boolean AutoUnmonitorPreviouslyDownloadedEpisodes { get; set; }
|
|
String RecycleBin { get; set; }
|
|
Boolean AutoDownloadPropers { get; set; }
|
|
Boolean CreateEmptySeriesFolders { 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; }
|
|
}
|
|
}
|