12345678910111213141516171819202122232425262728293031 |
- 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; }
- }
- }
|