123456789101112131415161718192021222324252627282930313233343536373839 |
- using System;
- namespace Lottomat.Application.Entity.ViewModel
- {
-
-
-
- public class ZTArticleDetailViewModel
- {
-
-
-
- public int Id { get; set; }
-
-
-
- public string Title { get; set; }
-
-
-
- public string Detail { get; set; }
-
-
-
- public string Editor { get; set; }
-
-
-
- public string TypeName { get; set; }
-
-
-
- public string EnumCode { get; set; }
-
-
-
- public DateTime Addtime { get; set; }
- }
- }
|