namespace podcast_agent { using System.Xml.Linq; public class Configuration { public string UserAgent { get; set; } = "secret-chinese-spy-drone/0.1"; public List FeedCommands { get; set; } public class FeedCommand { public string Url { get; set; } public string OutputDir { get; set; } public uint? KeepCount { get; set; } } } }