using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace AutomobilePlantContracts.ViewModel { public class ReportOrdersViewModel { public int Id { get; set; } public DateTime DateCreate { get; set; } public string CarName { get; set; } = string.Empty; public string Status { get; set; } = string.Empty; public double Sum { get; set; } } }