|
|
|
@ -10,6 +10,7 @@ namespace Sonarr.Api.V3.Config
|
|
|
|
|
{
|
|
|
|
|
public bool AutoUnmonitorPreviouslyDownloadedEpisodes { get; set; }
|
|
|
|
|
public string RecycleBin { get; set; }
|
|
|
|
|
public int RecycleBinCleanupDays { get; set; }
|
|
|
|
|
public ProperDownloadTypes DownloadPropersAndRepacks { get; set; }
|
|
|
|
|
public bool CreateEmptySeriesFolders { get; set; }
|
|
|
|
|
public bool DeleteEmptyFolders { get; set; }
|
|
|
|
@ -38,6 +39,7 @@ namespace Sonarr.Api.V3.Config
|
|
|
|
|
{
|
|
|
|
|
AutoUnmonitorPreviouslyDownloadedEpisodes = model.AutoUnmonitorPreviouslyDownloadedEpisodes,
|
|
|
|
|
RecycleBin = model.RecycleBin,
|
|
|
|
|
RecycleBinCleanupDays = model.RecycleBinCleanupDays,
|
|
|
|
|
DownloadPropersAndRepacks = model.DownloadPropersAndRepacks,
|
|
|
|
|
CreateEmptySeriesFolders = model.CreateEmptySeriesFolders,
|
|
|
|
|
DeleteEmptyFolders = model.DeleteEmptyFolders,
|
|
|
|
|