1234567891011121314151617181920212223242526272829303132333435 |
- using System;
- namespace Lottomat.Application.Entity.ViewModel
- {
-
-
-
- public class ZTArticleViewModel
- {
-
-
-
-
- public int? Id { get; set; }
-
-
-
- public int Cid { get; set; }
-
-
-
-
- public string Title { get; set; }
-
-
-
-
- public string ShortDetail { get; set; }
-
-
-
-
- public DateTime? Addtime { get; set; }
- }
- }
|