using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using Yi.Framework.Model.Models; namespace Yi.Framework.Model.Search { public class SearchResult : PageResult { public List brands = new List(); public List categories = new List(); //规格参数过滤条件 public List> specs = new List>(); public SearchResult(long total, int totalPage, List items, List categories, List brands, List> specs) : base (total, items) { this.categories = categories; this.brands = brands; this.specs = specs; } } }