rdt-client/server/RdtClient.Data/Models/QBittorrent/TorrentFileItem.cs
Roger Far b3dd856410 Add retry count as a setting per torrent and global.
Add error status on the torrent itself too.
Improved torrent retrying.
2021-10-30 10:25:53 -06:00

11 lines
203 B
C#

using System;
using Newtonsoft.Json;
namespace RdtClient.Data.Models.QBittorrent
{
public class TorrentFileItem
{
[JsonProperty("name")]
public String Name { get; set; }
}
}