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.
10 lines
218 B
C#
10 lines
218 B
C#
using System;
|
|
|
|
namespace RdtClient.Service.Models.TorrentClient
|
|
{
|
|
public class TorrentClientUser
|
|
{
|
|
public String Username { get; set; }
|
|
public DateTimeOffset Expiration { get; set; }
|
|
}
|
|
}
|