podcast-agent/Configuration.cs
2023-12-04 21:58:05 -05:00

10 lines
286 B
C#

namespace podcast_agent
{
using System.Xml.Linq;
public class Configuration
{
public string OutputDir { get; set; } = "../";
public string UserAgent { get; set; } = "secret-chinese-spy-drone/0.1";
public List<string> PodcastUrls { get; set; }
}
}