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

12 lines
257 B
C#
Raw Normal View History

2016-12-23 21:45:24 +00:00
using System.Collections.Generic;
using NzbDrone.Common.Disk;
namespace NzbDrone.Core.Download
{
2017-10-08 03:54:13 +00:00
public class DownloadClientInfo
{
public bool IsLocalhost { get; set; }
public List<OsPath> OutputRootFolders { get; set; }
}
}