2023-04-07 01:11:59 +04:00
|
|
|
|
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();
|
2023-04-07 01:11:59 +04:00
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|