using Microsoft.AspNetCore.Mvc.Rendering; using Microsoft.eShopWeb.Business.Entities; using System.Collections.Generic; namespace Microsoft.eShopWeb.ViewModels { public class CatalogIndex { public IEnumerable CatalogItems { get; set; } public IEnumerable Brands { get; set; } public IEnumerable Types { get; set; } public int? BrandFilterApplied { get; set; } public int? TypesFilterApplied { get; set; } public PaginationInfo PaginationInfo { get; set; } } }