HomeSearchModel.cs 492 B

1234567891011121314151617
  1. using CZKJ.GBRS2.Entity;
  2. using System.Collections.Generic;
  3. namespace CZKJ.GBRS2.WebMVC.Models
  4. {
  5. public class HomeSearchModel
  6. {
  7. public IList<ArticleEntity> ArticleList { get; set; }
  8. public IList<ProductEntity> ProductList { get; set; }
  9. public int aRowsCount { get; set; }
  10. public int pRowsCount { get; set; }
  11. public int aPageIndex { get; set; }
  12. public int pPageIndex { get; set; }
  13. public string Keywords { get; set; }
  14. }
  15. }