PIbd-21_BatylkinaAO_MusoevD.../Canteen/CanteenContracts/ViewModels/ReportCookView.cs

16 lines
340 B
C#
Raw Permalink Normal View History

2023-06-14 22:47:30 +04:00
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; }
}
}