Aparyan.ISE-22.MotorPlant/MotorPlantContracts/ViewModels/ReportOrdersViewModel.cs
2024-04-25 23:20:52 +04:00

12 lines
330 B
C#

namespace MotorPlantContracts.ViewModels
{
public class ReportOrdersViewModel
{
public int Id { get; set; }
public DateTime DateCreate { get; set; }
public string EngineName { get; set; } = string.Empty;
public double Sum { get; set; }
public string Status { get; set; }
}
}