Retail_manager/RMWPFInterfaceLibrary/Models/SaleModel.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

14 lines
296 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace RMWPFInterfaceLibrary.Models
{
public class SaleModel
{
public List<SaleDetailModel> SaleDetails { get; set; } = new List<SaleDetailModel>();
}
}