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 string Url { get; set; } public string Username { get; set; } public string Password { get; set; } } } }