rdt-client/server/RdtClient.Data/Models/TorrentClient/TorrentClientTorrent.cs
Roger Far b3dd856410 Add retry count as a setting per torrent and global.
Add error status on the torrent itself too.
Improved torrent retrying.
2021-10-30 10:25:53 -06:00

25 lines
883 B
C#

using System;
using System.Collections.Generic;
namespace RdtClient.Data.Models.TorrentClient
{
public class TorrentClientTorrent
{
public String Id { get; set; }
public String Filename { get; set; }
public String OriginalFilename { get; set; }
public String Hash { get; set; }
public Int64 Bytes { get; set; }
public Int64 OriginalBytes { get; set; }
public String Host { get; set; }
public Int64 Split { get; set; }
public Int64 Progress { get; set; }
public String Status { get; set; }
public DateTimeOffset Added { get; set; }
public List<TorrentClientFile> Files { get; set; }
public List<String> Links { get; set; }
public DateTimeOffset? Ended { get; set; }
public Int64? Speed { get; set; }
public Int64? Seeders { get; set; }
}
}