2024-04-21 21:20:52 +04:00
|
|
|
|
using HotelDataModels.Models;
|
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace HotelContracts.BindingModels
|
|
|
|
|
{
|
|
|
|
|
public class MealPlanBindingModel : IMealPlanModel
|
|
|
|
|
{
|
|
|
|
|
public int Id { get; set; }
|
|
|
|
|
|
2024-04-22 17:05:38 +04:00
|
|
|
|
public string MealPlanName { get; set; } = string.Empty;
|
2024-04-21 21:20:52 +04:00
|
|
|
|
|
|
|
|
|
public double MealPlanPrice { get; set; }
|
|
|
|
|
|
|
|
|
|
public int OrganiserId { get; set; }
|
|
|
|
|
|
|
|
|
|
public Dictionary<int, IParticipantModel> MealPlanParticipants { get; set; } = new();
|
|
|
|
|
}
|
|
|
|
|
}
|