rdt-client/server/RdtClient.Service/Models/QBittorrent/TorrentFileItem.cs
Alex Taylor 4d92a6f42d Implement torrents/files endpoint
It seems that recently sonarr and radarr have changed the qbittorrent inegration such at the torrents/files endpoint is required for file mapping to work. I've tested this against both sonarr and radarr, and things seem to be working.
2020-12-01 01:07:49 -08:00

11 lines
206 B
C#

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