Readarr/src/NzbDrone.Core/Download/DownloadClientStatus.cs
2016-12-23 13:45:24 -08:00

11 lines
259 B
C#

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