You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Lidarr/src/NzbDrone.Core/Download/Clients/Nzbget/NzbgetGlobalStatus.cs

15 lines
500 B

namespace NzbDrone.Core.Download.Clients.Nzbget
{
public class NzbgetGlobalStatus
{
public uint RemainingSizeLo { get; set; }
public uint RemainingSizeHi { get; set; }
public uint DownloadedSizeLo { get; set; }
public uint DownloadedSizeHi { get; set; }
public int DownloadRate { get; set; }
public int AverageDownloadRate { get; set; }
public int DownloadLimit { get; set; }
public bool DownloadPaused { get; set; }
}
}