PIAPS_CW/Contracts/BindingModels/SellBindingModel.cs
2024-06-24 15:06:42 +04:00

18 lines
417 B
C#

using DataModels.Models;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Contracts.BindingModels
{
public class SellBindingModel
{
public Guid Id { get; set; }
public DateTime DateSell { get; set; }
public Guid? UserId { get; set; }
public Dictionary<Guid, (IProduct, int)> SellProducts { get; set; } = new();
}
}