Retail_manager/RMDataManagerLibrary/Models/SaleDetailModel.cs
s459315 f0bea75284 Add Saving Cart to the DB
All the changes necessary to save shopping cart to DB
2022-07-25 17:02:36 +02:00

13 lines
260 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
namespace RMDataManagerLibrary.Models
{
public class SaleDetailModel
{
public int ProductId { get; set; }
public int Quantity { get; set; }
}
}