Files
Readarr/src/NzbDrone.Core/Download/DownloadClientInfo.cs
T
Robin Dadswell 0bcad2e57b Fixed: Root Folder Downloads check giving errors when RuTorrent is used (#1051)
* Fixed: Root Folder Downloads check giving errors when RuTorrent is used

* removed unnecessary if statement from RemotePathMappingCheck
2021-05-23 23:41:16 +01:00

17 lines
366 B
C#

using System.Collections.Generic;
using NzbDrone.Common.Disk;
namespace NzbDrone.Core.Download
{
public class DownloadClientInfo
{
public DownloadClientInfo()
{
OutputRootFolders = new List<OsPath>();
}
public bool IsLocalhost { get; set; }
public List<OsPath> OutputRootFolders { get; set; }
}
}