Files
Readarr/src/NzbDrone.Core/Download/DownloadClientStatus.cs
T
2014-11-19 21:47:11 +01:00

15 lines
314 B
C#

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