Radarr/src/NzbDrone.Core/Download/DownloadClientStatus.cs

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