PIbd-23_Bogdanov_D.S._Compu.../ComputerShopContracts/ViewModels/ReportOrderViewModel.cs

17 lines
407 B
C#
Raw Normal View History

2023-03-26 17:06:05 +04:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ComputerShopContracts.ViewModels
{
public class ReportOrderViewModel
{
public int Id { get; set; }
public DateTime DateCreate { get; set; }
public string ComputerName { get; set; } = string.Empty;
public double Sum { get; set; }
}
}