PIbd-21_BatylkinaAO_MusoevD.../Canteen/CanteenContracts/ViewModels/ReportLunchPCView.cs
2023-05-20 12:11:48 +04:00

18 lines
438 B
C#

using CanteenContracts.View;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CanteenContracts.ViewModels
{
public class ReportLunchesPCView
{
public DateTime DateCreate { get; set; }
public int Sum { get; set; }
public List<OrderViewModel> Orders { get; set; }
public List<CookViewModel> Cooks { get; set; }
}
}