mirror of
				https://github.com/lantean-code/qbtmud.git
				synced 2025-11-03 21:43:19 +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; }
 | 
						|
    }
 | 
						|
} |