PIbd-22_Safiulova_K.N._Airc.../AircraftPlant/AircraftPlantContracts»/ViewModels/ReportOrdersViewModel.cs

18 lines
470 B
C#
Raw Normal View History

2024-04-07 00:23:58 +04:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace AircraftPlantContracts.ViewModels
{
public class ReportOrdersViewModel
{
public int Id { get; set; }
public DateTime DateCreate { get; set; }
2024-04-07 19:07:33 +04:00
public string PlaneName { get; set; } = string.Empty;
2024-04-07 00:23:58 +04:00
public double Sum { get; set; }
2024-04-22 16:41:09 +04:00
public string OrderStatus { get; set; } = string.Empty;
2024-04-07 00:23:58 +04:00
}
}