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.
13 lines
346 B
13 lines
346 B
using Microsoft.eShopWeb.ApplicationCore.Entities;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Microsoft.eShopWeb.ViewModels
|
|
{
|
|
public class Catalog
|
|
{
|
|
public int PageIndex { get; set; }
|
|
public int PageSize { get; set; }
|
|
public int Count { get; set; }
|
|
public List<CatalogItem> Data { get; set; }
|
|
}
|
|
}
|
|
|