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.

MailSettings.cs 472B

1234567891011121314
  1. namespace Diligent.WebAPI.Business.Settings
  2. {
  3. public class MailSettings
  4. {
  5. public string SmtpFrom { get; set; }
  6. public string SmtpFromName { get; set; }
  7. public string SmtpServer { get; set; }
  8. public int SmtpPort { get; set; }
  9. public bool SmtpUseSSL { get; set; }
  10. public string SmtpUsername { get; set; }
  11. public string SmtpPassword { get; set; }
  12. public string ResetPasswordUrl { get; set; }
  13. }
  14. }