rdt-client/server/RdtClient.Data/Models/DebridClient/DebridClientTorrent.cs
2026-02-13 13:15:57 -05:00

27 lines
975 B
C#

using RdtClient.Data.Enums;
namespace RdtClient.Data.Models.DebridClient;
public class DebridClientTorrent
{
public String Id { get; set; } = default!;
public String Filename { get; set; } = default!;
public String? OriginalFilename { get; set; }
public String Hash { get; set; } = default!;
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 String? Message { get; set; }
public Int64 StatusCode { get; set; }
public DateTimeOffset? Added { get; set; }
public DownloadType Type { get; set; } = DownloadType.Torrent;
public List<DebridClientFile>? Files { get; set; }
public List<String>? Links { get; set; }
public DateTimeOffset? Ended { get; set; }
public Int64? Speed { get; set; }
public Int64? Seeders { get; set; }
}