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

18 lines
466 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; }
2023-04-04 13:18:20 +04:00
public String Status { get; set; } = string.Empty;
2023-03-26 17:06:05 +04:00
}
}