using CZFW.Framework.Model.Entity; using CZKJ.GBRS2.Entity; using System.Collections.Generic; namespace CZKJ.GBRS2.WebMVC.Models { public class ProductListModel { public IList<ProductEntity> ProductList { get; set; } public IList<TypeEntity> TypeList { get; set; } public int TypeId { get; set; } public int ParentId { get; set; } public string ParentTypeName { get; set; } public int RowsCount { get; set; } public int PageIndex { get; set; } } }