using CZFW.Framework.Model.Entity; using CZKJ.GBRS2.Entity; using System.Collections.Generic; namespace CZKJ.GBRS2.WebMVC.Models { /// /// 客户服务 /// public class PublicInfoIndexModel : ISeo, IShare { /// /// 广告位 /// public GalleryEntity GalleryEntity { get; set; } /// /// 左侧类型列表 /// public IList TypeList { get; set; } public PublicInfoEntity PublicInfoEntity { get; set; } /// /// 文章列表 /// public IList ArticleList { get; set; } public int TypeId { get; set; } public string TypeName { get; set; } public int RowsCount { get; set; } public int PageIndex { get; set; } public int? Id { get; set; } public string SeoTitle { get; set; } public string SeoDescription { get; set; } public string SeoKeywords { get; set; } public string ShareImage { get; set; } public string ShareTitle { get; set; } public string ShareUrl { get; set; } public string ShareDescription { get; set; } } }