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