1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- using System.Collections.Generic;
- namespace Models
- {
-
-
-
- public class NewsPreview
- {
-
-
-
- public string NewsType { get; set; }
-
-
-
- public string ItemName { get; set; }
-
-
-
- public string ClassiFication { get; set; }
-
-
-
- public List<NewsPreviewItem> NewsPreviewItem { get; set; }
- }
- public class NewsPreviewItem
- {
-
-
-
- public string NewsId { get; set; }
-
-
-
- public string AddTime { get; set; }
-
-
-
- public string Title { get; set; }
-
-
-
- public string PeriodsNumber { get; set; }
- }
- }
|