123456789101112131415161718192021222324252627282930313233343536373839 |
- using CZFW.Framework.Model.Entity;
- using CZKJ.GBRS2.Entity;
- using System.Collections.Generic;
- namespace CZKJ.GBRS2.WebMVC.Models
- {
-
-
-
- public class ArticleIndexModel
- {
-
-
-
- public GalleryEntity GalleryEntity { get; set; }
-
-
-
- public TypeEntity LeftImage { get; set; }
-
-
-
- public IList<ArticleEntity> MediaFocusList { get; set; }
-
-
-
- public GalleryEntity CenterGallery { get; set; }
-
-
-
- public IList<ArticleEntity> InformationList { get; set; }
-
-
-
- public IList<ArticleEntity> DynamicList { get; set; }
- }
- }
|