newsletter/Configuration.cs

14 lines
386 B
C#
Raw Permalink Normal View History

2023-03-22 11:03:06 -04:00
using System.Collections.Generic;
namespace newsletter
{
public class Configuration
{
public string ExportPath { get; set; }
public List<Reporter> Reporters { get; set; }
public class Reporter
{
public string ReporterClass { get; set; }
2023-03-23 16:49:18 -04:00
public IEnumerable<KeyValuePair<string, string>> Misc { get; set; }
2023-03-22 11:03:06 -04:00
}
}
}