123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- using System.Collections.Generic;
- using CZFW.Framework.Model.Entity;
- using CZKJ.GBRS2.Entity;
- namespace CZKJ.GBRS2.WebMVC.Models
- {
- public class IndexModel
- {
-
-
-
- public IList<GalleryEntity> GalleryList { get; set; }
-
-
-
- public IList<GalleryEntity> FastIConList { get; set; }
-
-
-
- public IList<GalleryEntity> ProductList { get; set; }
-
-
-
- public IList<GalleryEntity> ServiceList { get; set; }
-
-
-
- public GalleryEntity LeftServicegallery { get; set; }
-
-
-
- public IList<TypeEntity> TypeList { get; set; }
-
-
-
- public IList<TypeEntity> ChildrenList { get; set; }
-
-
-
- public string Wechat { get; set; }
-
-
-
- public string Weibo { get; set; }
-
-
-
- public string Facebook { get; set; }
-
-
-
- public string Twitter { get; set; }
-
-
-
- public IList<GalleryEntity> BackGalleryList { get; set; }
- }
- }
|