rdt-client/server/RdtClient.Service/Models/TorrentClient/TorrentClientUser.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

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; }
}
}