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.

123456789101112131415161718192021
  1. using Microsoft.EntityFrameworkCore.Storage.ValueConversion.Internal;
  2. namespace Diligent.WebAPI.Business.Settings
  3. {
  4. public class AuthorizationSettings
  5. {
  6. public string Secret { get; set; }
  7. public int JwtExpiredTime { get; set; }
  8. public int JwtRefreshExpiredTime { get; set; }
  9. public string SmtpFrom { get; set; }
  10. public string SmtpFromName { get; set; }
  11. public string SmtpServer { get; set; }
  12. public int SmtpPort { get; set; }
  13. public bool SmtpUseSSL { get; set; }
  14. public string SmtpUsername { get; set; }
  15. public string SmtpPassword { get; set; }
  16. public string ResetPasswordUrl { get; set; }
  17. }
  18. }