ShopOnlineSolution/ShopOnline.Models/Dtos/CartItemToAddDto.cs

16 lines
328 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ShopOnline.Models.Dtos
{
public class CartItemToAddDto
{
public int CartId { get; set; }
public int ProductId { get; set; }
public int Quantity { get; set; }
}
}