1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2024-12-31 03:11:07 +02:00
Sonarr/src/NzbDrone.Core/Configuration/IConfigService.cs

30 lines
1.1 KiB
C#
Raw Normal View History

2013-02-24 09:48:52 +03:00
using System;
using System.Collections.Generic;
namespace NzbDrone.Core.Configuration
{
public interface IConfigService
{
IEnumerable<Config> All();
Dictionary<String, Object> AllWithDefaults();
2013-05-15 05:57:57 +03:00
String DownloadedEpisodesFolder { get; set; }
bool AutoUnmonitorPreviouslyDownloadedEpisodes { get; set; }
2013-02-24 09:48:52 +03:00
int Retention { get; set; }
string RecycleBin { get; set; }
string ReleaseRestrictions { get; set; }
Int32 RssSyncInterval { get; set; }
Boolean AutoDownloadPropers { get; set; }
String DownloadClientWorkingFolders { get; set; }
Boolean AutoRedownloadFailed { get; set; }
Boolean RemoveFailedDownloads { get; set; }
Boolean EnableFailedDownloadHandling { get; set; }
Boolean CreateEmptySeriesFolders { get; set; }
2013-03-05 19:13:23 +03:00
void SaveValues(Dictionary<string, object> configValues);
2014-01-26 11:57:14 +03:00
Boolean SetPermissionsLinux { get; set; }
String FileChmod { get; set; }
String FolderChmod { get; set; }
String ChownUser { get; set; }
String ChownGroup { get; set; }
2013-02-24 09:48:52 +03:00
}
2013-07-04 04:00:46 +03:00
}