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 394B

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