newsletter/Configuration.cs

16 lines
448 B
C#
Raw 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-22 11:03:06 -04:00
public string Url { get; set; }
public string Username { get; set; }
public string Password { get; set; }
}
}
}