18 lines
392 B
C#
18 lines
392 B
C#
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace HotelDataBaseImplement.Models
|
|
{
|
|
public class MealPlanParticipant
|
|
{
|
|
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();
|
|
}
|
|
} |