Lidarr/src/NzbDrone.Core/Download/DownloadClientInfo.cs

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; }
}
}