mirror of
https://github.com/Readarr/Readarr.git
synced 2026-04-18 21:34:28 -04:00
0bcad2e57b
* Fixed: Root Folder Downloads check giving errors when RuTorrent is used * removed unnecessary if statement from RemotePathMappingCheck
17 lines
366 B
C#
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; }
|
|
}
|
|
}
|