PIbd-21_Ihonkina_E.S._Preca.../PrecastConcretePlantContracts/ViewModels/ReportOrdersByDateViewModel.cs
2023-05-23 19:15:11 +03:00

16 lines
360 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace PrecastConcretePlantContracts.ViewModels
{
public class ReportOrdersByDateViewModel
{
public DateTime DateCreate { get; set; }
public int Count { get; set; }
public double Sum { get; set; }
}
}