using CZFW.Framework.Model.Entity; using CZKJ.GBRS2.Entity; using System.Collections.Generic; namespace CZKJ.GBRS2.WebMVC.Models { public class ArticleListModel { public int? ParentId { get; set; } //public int? TypeId { get; set; } public IList TypeList { get; set; } public TypeEntity TypeEntity { get; set; } public IList ArticelList { get; set; } public int RowsCount { get; set; } public int PageIndex { get; set; } public IList FileList { get; set; } } }