10 lines
220 B
C#
10 lines
220 B
C#
namespace WebVentaCoche.Models
|
|
{
|
|
public class CartProduct
|
|
{
|
|
public Product Product { get; set; }
|
|
public int Amount { get; set; }
|
|
public decimal Subtotal => Product.Price * Amount;
|
|
}
|
|
}
|