using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; using System.Linq; using System.Web; namespace DSWeb.Common.DB { [Table("Mail_Send_Smtp")] public class MailSendSmtp { [Key] public string GID { get; set; } public string Account { get; set; } public string Password { get; set; } public string Server { get; set; } public int Port { get; set; } public bool UseSSL { get; set; } public string Remark { get; set; } } }