using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace HotelContracts.ViewModels { public class ReportMealPlansDinnersViewModel { public string DinnerName { get; set; } = string.Empty; public List MealPlans { get; set; } = new(); } }