e0a6c7842b
* refactored code added deluge support added transmission support added content blocker added blacklist and whitelist * increased level on some logs; updated test docker compose; updated dev appsettings * updated docker compose and readme * moved some logs * fixed env var typo; fixed sonarr and radarr default download client
12 lines
332 B
C#
12 lines
332 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace Domain.Models.Deluge.Response;
|
|
|
|
public sealed record DelugeContents
|
|
{
|
|
[JsonPropertyName("contents")]
|
|
public Dictionary<string, DelugeFileOrDirectory> Contents { get; set; }
|
|
|
|
[JsonPropertyName("type")]
|
|
public string Type { get; set; } // Always "dir" for the root
|
|
} |