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