You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

EmailSettings.cs 428B

12345678910111213
  1. namespace MVCTemplate.Business.Infrastructure.Settings
  2. {
  3. public class EmailSettings
  4. {
  5. public string SmtpServer { get; set; }
  6. public int SmtpPort { get; set; }
  7. public bool SmtpUseSSL { get; set; }
  8. public string SmtpUsername { get; set; }
  9. public string SmtpPassword { get; set; }
  10. public string SmtpFrom { get; set; }
  11. public string SmtpFromName { get; set; }
  12. }
  13. }