using System.Text.Json.Serialization; namespace Domain.Models.Deluge.Response; public sealed record DelugeContents { [JsonPropertyName("contents")] public Dictionary Contents { get; set; } [JsonPropertyName("type")] public string Type { get; set; } // Always "dir" for the root }