Lidarr/src/NzbDrone.Core/Configuration/IConfigService.cs

41 lines
1.3 KiB
C#
Raw Normal View History

2013-02-24 06:48:52 +00:00
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
2013-05-15 02:57:57 +00:00
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; }
Boolean FileDateAiredDate { get; set; }
String RecycleBin { get; set; }
Boolean AutoDownloadPropers { get; set; }
Boolean CreateEmptySeriesFolders { get; set; }
//Permissions (Media Management)
2014-01-26 08:57:14 +00:00
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; }
2013-02-24 06:48:52 +00:00
}
2013-07-04 01:00:46 +00:00
}