using NCC.Dependency; namespace NCC.Expand.Thirdparty.Email.Model { [SuppressSniffer] public class MailAccount { /// /// POP3服务 /// public string POP3Host { get; set; } /// /// POP3端口 /// public int POP3Port { get; set; } /// /// SMTP服务 /// public string SMTPHost { get; set; } /// /// SMTP端口 /// public int SMTPPort { get; set; } /// /// 账户 /// public string Account { get; set; } /// /// 账户名称 /// public string AccountName { get; set; } /// /// 密码 /// public string Password { get; set; } /// /// SSL /// public bool Ssl { get; set; } = false; } }