podcast-agent/Configuration.cs

16 lines
434 B
C#
Raw Permalink Normal View History

2023-12-04 21:58:05 -05:00
namespace podcast_agent
{
using System.Xml.Linq;
public class Configuration
{
public string UserAgent { get; set; } = "secret-chinese-spy-drone/0.1";
public List<FeedCommand> FeedCommands { get; set; }
public class FeedCommand
{
public string Url { get; set; }
public string OutputDir { get; set; }
public uint? KeepCount { get; set; }
}
2023-12-04 21:58:05 -05:00
}
}