using System; using System.Collections.Generic; using System.Text; namespace Bowin.Common.Mail { public class MailSettings { public string SMTPServer { get; set; } public int? SMTPPort { get; set; } public bool? SMTPIsSSL { get; set; } public string Pop3Server { get; set; } public int? Pop3Port { get; set; } public bool? Pop3IsSSL { get; set; } public string UserName { get; set; } public string Password { get; set; } } }