123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- using System;
- namespace SCC.Models
- {
- public class LotteryGlossaryModel
- {
-
-
-
- public string ID { get; set; }
-
-
-
- public LotteryGlossaryType TypeID { get; set; }
-
-
-
- public string TypeName { get; set; }
-
-
-
- public string Title { get; set; }
-
-
-
- public DateTime AddTime { get; set; }
-
-
-
- public string Author { get; set; }
-
-
-
- public string Content { get; set; }
-
-
-
- public string SourceUrl { get; set; }
-
-
-
- public bool IsDelete { get; set; }
- }
- }
|