PIbd-23-Nasyrov-A.G.-Flower.../FlowerShopContracts/ViewModels/ReportDateOrdersViewModel.cs
2024-04-04 11:38:58 +04:00

16 lines
350 B
C#

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