Retail_manager/RMWPFInterfaceLibrary/Models/CartItemModel.cs
s459315 4a4fc708c7 Update Cart Quantites
Add AutoMapper and INotifyPropertyChanged to enable cart quantity changes to be reflected
2022-07-27 14:57:33 +02:00

15 lines
304 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace RMWPFInterfaceLibrary.Models
{
public class CartItemModel
{
public ProductModel Product { get; set; }
public int QuantityInCart { get; set; }
}
}