Settings.cs 303 B

12345678
  1. public class Settings
  2. {
  3. public string UserName { get; set; } = String.Empty;
  4. public string ImapServer { get; set; } = String.Empty;
  5. public int SslPort { get; set; }
  6. public string IntermediateFile { get; set; } = String.Empty;
  7. public string CsvFile { get; set; } = String.Empty;
  8. }