using System.Collections.Generic; using WebVentaCoche.Models; namespace WebVentaCoche.ViewModels { public class ProductsHomeViewModel { public IEnumerable Products { get; set; } = new List(); public int CurrentPage { get; set; } public int TotalPages { get; set; } } }