EMailOption.cs 371 B

12345678910111213
  1. namespace Long.Utils.Mail;
  2. /// <summary>
  3. /// 电子邮件配置类
  4. /// </summary>
  5. public class EMailOption
  6. {
  7. public string Server { get; set; } = string.Empty;
  8. public int Port { get; set; }
  9. public string From { get; set; } = string.Empty;
  10. public string UserName { get; set; } = string.Empty;
  11. public string Password { get; set; } = string.Empty;
  12. }