namespace HotelContracts.ViewModels { public class ReportLunchRoomViewModel { public string LunchName { get; set; } = string.Empty; public List> MealPlans { get; set; } = new(); } }