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.
11 lines
217 B
C#
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; }
|
|
}
|
|
}
|