Pibd-21_Ievlewa_MD._Precast.../PrecastConcretePlant/PrecastConcretePlantContracts/ViewModels/ReportOrdersViewModel.cs

19 lines
478 B
C#
Raw Permalink Normal View History

2024-04-05 17:36:10 +04:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace PrecastConcretePlantContracts.ViewModels
{
public class ReportOrdersViewModel
{
public int Id { get; set; }
public DateTime DateCreate { get; set; }
public string ReinforcedName { get; set; } = string.Empty;
public double Sum { get; set; }
public string Status { get; set; } = string.Empty;
}
}