newsletter/Configuration.cs

14 lines
386 B
C#

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; }
public IEnumerable<KeyValuePair<string, string>> Misc { get; set; }
}
}
}