ISEbd-22_Alimova_M.S._Confe.../Confectionery/ConfectioneryContracts/BindingModels/ReportOrdersViewModel.cs

17 lines
410 B
C#
Raw Normal View History

2024-04-11 22:16:06 +04:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ConfectioneryContracts.BindingModels
{
public class ReportOrdersViewModel
{
public int Id { get; set; }
public DateTime DateCreate { get; set; }
public string PastryName { get; set; } = string.Empty;
public double Sum { get; set; }
}
}