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 Lunches { get; set; } } }