18 lines
477 B
C#
18 lines
477 B
C#
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; }
|
|
public string PlaneProductName { get; set; } = string.Empty;
|
|
public string OrderStatus { get; set; } = string.Empty;
|
|
public double Sum { get; set; }
|
|
}
|
|
}
|