PIbd-21_BatylkinaAO_MusoevD.../Canteen/CanteenContracts/ViewModels/ReportCookView.cs
2023-06-14 22:47:30 +04:00

16 lines
340 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 ReportCookView
{
public LunchViewModel Lunch { get; set; }
public List<CookViewModel> Cooks { get; set; }
}
}