using System.Collections.Generic; namespace newsletter { public class Configuration { public string ExportPath { get; set; } public List Reporters { get; set; } public class Reporter { public string ReporterClass { get; set; } public IEnumerable> Misc { get; set; } } } }