21 lines
494 B
C#
21 lines
494 B
C#
using DataModels.Enums;
|
|
using DataModels.Models;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Contracts.ViewModels
|
|
{
|
|
public class PurchaseViewModel
|
|
{
|
|
public Guid Id { get; set; }
|
|
public DateTime DatePurchase { get; set; }
|
|
public required Guid UserId { get; set; }
|
|
public PurchaseStatus Status { get; set; }
|
|
public Dictionary<Guid, (IProduct, int)> PurchaseProducts { get; set; } = new();
|
|
|
|
}
|
|
}
|