using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace Models { /// /// 邮件模型 /// public class EmailModel { /// /// 数据编号 /// public int Id { get; set; } /// /// 彩种名称 /// public string LotteryName { get; set; } /// /// 失败期号 /// public string QiHao { get; set; } /// /// 开奖时间 /// public DateTime OpenTime { get; set; } } }