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