You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

23 lines
604 B
C#

10 months ago
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; }
}
}