PIbd-23-Volkov-N.A.-Compute.../ComputersShop/ComputersShopContracts/ViewModels/ReportOrdersViewModel.cs

18 lines
468 B
C#
Raw Normal View History

2024-03-18 18:43:53 +04:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ComputersShopContracts.ViewModels
{
public class ReportOrdersViewModel
{
public int Id { get; set; }
public DateTime DateCreate { get; set; }
public string ComputerName { get; set; } = string.Empty;
public double Sum { get; set; }
public string Status { get; set; } = string.Empty;
}
}