Files
qbtmud/Lantean.QBitTorrentClient/Models/WebSeed.cs
2024-04-22 14:15:07 +01:00

16 lines
300 B
C#

using System.Text.Json.Serialization;
namespace Lantean.QBitTorrentClient.Models
{
public record WebSeed
{
[JsonConstructor]
public WebSeed(string url)
{
Url = url;
}
[JsonPropertyName("url")]
public string Url { get; }
}
}