PIAPS_CW/Contracts/BindingModels/SellBindingModel.cs

18 lines
417 B
C#
Raw Normal View History

2024-06-24 15:06:42 +04:00
using DataModels.Models;
using System;
2024-06-11 12:18:10 +04:00
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Contracts.BindingModels
{
public class SellBindingModel
{
2024-06-20 22:32:22 +04:00
public Guid Id { get; set; }
2024-06-11 12:18:10 +04:00
public DateTime DateSell { get; set; }
2024-06-24 15:06:42 +04:00
public Guid? UserId { get; set; }
public Dictionary<Guid, (IProduct, int)> SellProducts { get; set; } = new();
2024-06-23 20:39:28 +04:00
}
2024-06-11 12:18:10 +04:00
}