Files
Prowlarr/src/NzbDrone.Core/Download/DownloadClientStatus.cs
T

14 lines
286 B
C#

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