mirror of
https://github.com/Readarr/Readarr
synced 2026-01-19 14:03:03 +01:00
27 lines
856 B
C#
27 lines
856 B
C#
using NzbDrone.Core.Configuration;
|
|
using Readarr.Http.REST;
|
|
|
|
namespace Readarr.Api.V1.Config
|
|
{
|
|
public class DownloadClientConfigResource : RestResource
|
|
{
|
|
public string DownloadClientWorkingFolders { get; set; }
|
|
|
|
public bool EnableCompletedDownloadHandling { get; set; }
|
|
public bool AutoRedownloadFailed { get; set; }
|
|
}
|
|
|
|
public static class DownloadClientConfigResourceMapper
|
|
{
|
|
public static DownloadClientConfigResource ToResource(IConfigService model)
|
|
{
|
|
return new DownloadClientConfigResource
|
|
{
|
|
DownloadClientWorkingFolders = model.DownloadClientWorkingFolders,
|
|
|
|
EnableCompletedDownloadHandling = model.EnableCompletedDownloadHandling,
|
|
AutoRedownloadFailed = model.AutoRedownloadFailed
|
|
};
|
|
}
|
|
}
|
|
}
|