2024-04-28 18:11:56 +04:00
|
|
|
|
using System.ComponentModel.DataAnnotations;
|
|
|
|
|
|
|
|
|
|
namespace HotelDataBaseImplement.Models
|
2024-04-22 17:05:38 +04:00
|
|
|
|
{
|
|
|
|
|
public class MealPlanParticipant
|
|
|
|
|
{
|
2024-04-28 18:11:56 +04:00
|
|
|
|
public int Id { get; set; }
|
|
|
|
|
|
|
|
|
|
[Required]
|
|
|
|
|
public int ParticipantId { get; set; }
|
|
|
|
|
|
|
|
|
|
[Required]
|
|
|
|
|
public int MealPlanId { get; set; }
|
|
|
|
|
|
|
|
|
|
public virtual MealPlan MealPlan { get; set; } = new();
|
|
|
|
|
public virtual Participant Participant { get; set; } = new();
|
2024-04-22 17:05:38 +04:00
|
|
|
|
}
|
|
|
|
|
}
|