Nelze vybrat více než 25 témat
Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.
| 123456789101112131415 |
- namespace Diligent.WebAPI.Business.Settings
- {
- [ExcludeFromCodeCoverage]
- public class MailSettings
- {
- public string SmtpFrom { get; set; }
- public string SmtpFromName { get; set; }
- public string SmtpServer { get; set; }
- public int SmtpPort { get; set; }
- public bool SmtpUseSSL { get; set; }
- public string SmtpUsername { get; set; }
- public string SmtpPassword { get; set; }
- public string ResetPasswordUrl { get; set; }
- }
- }
|