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; } } }