rdt-client/server/RdtClient.Data/Models/QBittorrent/TorrentFileItem.cs
Roger Far cd6002b5d6 Upgrade packages
Moved C# code to file scoped namespaces
Merged Startup.cs and Program.cs
2022-04-30 11:22:15 -06:00

9 lines
No EOL
185 B
C#

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