CourseWork_Hotel/Hotel/HotelContracts/ViewModels/ReportMealPlanDinnerViewModel.cs

16 lines
359 B
C#
Raw Normal View History

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace HotelContracts.ViewModels
{
public class ReportMealPlanDinnerViewModel
{
public string DinnerName { get; set; } = string.Empty;
2023-04-07 13:49:59 +04:00
public List<Tuple<string, double>> MealPlans { get; set; } = new();
}
}