using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace IceCreamShopContracts.ViewModels { public class ReportDateOrdersViewModel { public DateTime DateOfOrders { get; set; } public int Count { get; set; } public double Sum { get; set; } } }