PIAPS_CW/Contracts/ViewModels/SellViewModel.cs

18 lines
410 B
C#
Raw Normal View History

2024-06-11 12:18:10 +04:00
using DataModels.Models;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Contracts.ViewModels
{
public class SellViewModel
{
public Guid Id { get; set; }
2024-06-20 22:32:22 +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-11 12:18:10 +04:00
}