rdt-client/server/RdtClient.Service/Models/TorrentClient/TorrentClientAvailableFile.cs
Roger Far d16e7f0c88 Changed the Aria2 updates to be done in the main TorrentRunner loop instead of each downloader making their own connections.
Added checks if Aria2 links actually got added.
Improved debug messages and set Microsoft message to Warning.
Abstracted the RealDebrid client into a ITorrentClient.
Add retry mechanism for server errors from RealDebrid.
2021-10-27 14:55:46 -06:00

11 lines
217 B
C#

using System;
namespace RdtClient.Service.Models.TorrentClient
{
public class TorrentClientAvailableFile
{
public String Filename { get; set; }
public Int64 Filesize { get; set; }
}
}