mirror of
https://github.com/Readarr/Readarr
synced 2026-01-17 04:53:26 +01:00
11 lines
259 B
C#
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; }
|
|
}
|
|
}
|