using CZFW.Framework.Model.Entity; using CZKJ.GBRS2.Entity; using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; namespace CZKJ.GBRS2.WebMVC.Models { public class ArticleDertailModel:ISeo,IShare { public TypeEntity TypeEntity { get; set; } public ArticleEntity ArticleEntity { get; set; } public IList ArticleList { get; set; } public int Count { 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; } } }