using JNPF.DependencyInjection; namespace JNPF.Extend.Entitys.Dto.Email; /// /// 获取邮箱配置. /// [SuppressSniffer] public class EmailConfigInfoOutput { /// /// POP3服务地址. /// public string? pop3Host { get; set; } /// /// POP3端口. /// public string? pop3Port { get; set; } /// /// SMTP服务器地址. /// public string? smtpHost { get; set; } /// /// SMTP端口. /// public string? smtpPort { get; set; } /// /// 显示名称. /// public string? senderName { get; set; } /// /// 是否开户SSL登录(1-是,0否). /// public int? emailSsl { get; set; } /// /// 密码. /// public string? password { get; set; } /// /// 邮箱地址. /// public string? account { get; set; } }