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