mirror of
https://github.com/lantean-code/qbtmud.git
synced 2025-11-01 20:43:36 +00:00
16 lines
300 B
C#
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; }
|
|
}
|
|
} |