PIbd-23_Starostin_I.K._Ship.../ShipyardContracts/ViewModels/ReportOrdersViewModel.cs

18 lines
466 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ShipyardContracts.ViewModels
{
public class ReportOrdersViewModel
{
public int Id { get; set; }
public DateTime DateCreate { get; set; }
public string ShipName { get; set; }
public double Sum { get; set; }
public string OrderStatus { get; set; } = string.Empty;
}
}