23 lines
516 B
C#
23 lines
516 B
C#
|
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; }
|
|||
|
|
|||
|
public string MealPlantName { get; set; } = string.Empty;
|
|||
|
|
|||
|
public double MealPlanPrice { get; set; }
|
|||
|
|
|||
|
public int OrganiserId { get; set; }
|
|||
|
|
|||
|
public Dictionary<int, IParticipantModel> MealPlanParticipants { get; set; } = new();
|
|||
|
}
|
|||
|
}
|