|
|
@ -3,31 +3,19 @@
|
|
|
|
public class TransmissionTorrent
|
|
|
|
public class TransmissionTorrent
|
|
|
|
{
|
|
|
|
{
|
|
|
|
public int Id { get; set; }
|
|
|
|
public int Id { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
public string HashString { get; set; }
|
|
|
|
public string HashString { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
public string Name { get; set; }
|
|
|
|
public string Name { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
public string DownloadDir { get; set; }
|
|
|
|
public string DownloadDir { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
public long TotalSize { get; set; }
|
|
|
|
public long TotalSize { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
public long LeftUntilDone { get; set; }
|
|
|
|
public long LeftUntilDone { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
public bool IsFinished { get; set; }
|
|
|
|
public bool IsFinished { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
public int Eta { get; set; }
|
|
|
|
public int Eta { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
public TransmissionTorrentStatus Status { get; set; }
|
|
|
|
public TransmissionTorrentStatus Status { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
public int SecondsDownloading { get; set; }
|
|
|
|
public int SecondsDownloading { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
public string ErrorString { get; set; }
|
|
|
|
public string ErrorString { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
public long DownloadedEver { get; set; }
|
|
|
|
public long DownloadedEver { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
public long UploadedEver { get; set; }
|
|
|
|
public long UploadedEver { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
public long SeedRatioLimit { get; set; }
|
|
|
|
public long SeedRatioLimit { get; set; }
|
|
|
|
|
|
|
|
public int FileCount { get; set; }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|