namespace WebVentaCoche.Models { public class CartViewModel { public List Products { get; set; } = new List(); public decimal Total => Products.Sum(p => p.Subtotal); } }