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

17 lines
375 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 ReportCooksPCView
{
public int CookId{ get; set; }
public string FIO { get; set; }
public List<LunchViewModel> Lunches { get; set; }
}
}