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.
Radarr/src/NzbDrone.Core/Download/Clients/Nzbget/NzbgetPostQueueItem.cs

15 lines
461 B

namespace NzbDrone.Core.Download.Clients.Nzbget
{
public class NzbgetPostQueueItem
{
public int NzbId { get; set; }
public string NzbName { get; set; }
public string Stage { get; set; }
public string ProgressLabel { get; set; }
public int FileProgress { get; set; }
public int StageProgress { get; set; }
public int TotalTimeSec { get; set; }
public int StageTimeSec { get; set; }
}
}