12 lines
323 B
C#
12 lines
323 B
C#
using System.Collections.Generic;
|
|
using WebVentaCoche.Models;
|
|
|
|
namespace WebVentaCoche.ViewModels
|
|
{
|
|
public class ProductsHomeViewModel
|
|
{
|
|
public IEnumerable<Product> Products { get; set; } = new List<Product>();
|
|
public int CurrentPage { get; set; }
|
|
public int TotalPages { get; set; }
|
|
}
|
|
} |