using Microsoft.AspNetCore.Mvc.Rendering; using System.Collections.Generic; namespace Microsoft.eShopWeb.RazorPages.ViewModels { public class CatalogIndexViewModel { 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 PaginationInfoViewModel PaginationInfo { get; set; } } }