Radarr/src/NzbDrone.Core/Download/Clients/DownloadStation/Responses/DownloadStationTaskInfoResp...

12 lines
307 B
C#

using System.Collections.Generic;
namespace NzbDrone.Core.Download.Clients.DownloadStation.Responses
{
public class DownloadStationTaskInfoResponse
{
public int Offset { get; set; }
public List<DownloadStationTask> Tasks { get; set; }
public int Total { get; set; }
}
}