PIbd-21_Raspaev_N.I._FoodOr.../FoodOrders/FoodOrdersContracts/ViewModels/ReportOrdersViewModel.cs

23 lines
504 B
C#
Raw Normal View History

2023-03-10 17:49:43 +04:00
using FoodOrdersDataModels.Enums;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace FoodOrdersContracts.ViewModels
{
public class ReportOrdersViewModel
{
public int Id { get; set; }
public DateTime DateCreate { get; set; }
public string DishName { get; set; } = string.Empty;
public double Sum { get; set; }
2023-03-10 17:49:43 +04:00
2023-03-24 16:08:31 +04:00
public string OrderStatus { get; set; } = string.Empty;
}
}