You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
603 B
16 lines
603 B
using Microsoft.AspNetCore.Mvc.Rendering;
|
|
using Microsoft.eShopWeb.ApplicationCore.Entities;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Microsoft.eShopWeb.ViewModels
|
|
{
|
|
public class CatalogIndexViewModel
|
|
{
|
|
public IEnumerable<CatalogItemViewModel> CatalogItems { get; set; }
|
|
public IEnumerable<SelectListItem> Brands { get; set; }
|
|
public IEnumerable<SelectListItem> Types { get; set; }
|
|
public int? BrandFilterApplied { get; set; }
|
|
public int? TypesFilterApplied { get; set; }
|
|
public PaginationInfoViewModel PaginationInfo { get; set; }
|
|
}
|
|
}
|
|
|