17 lines
459 B
C#

using System.ComponentModel.DataAnnotations;
namespace HotelDataBaseImplement.Models
{
public class ConferenceBookingLunch
{
public int Id { get; set; }
public int ConferenceBookingId { get; set; }
public int LunchId { get; set; }
[Required]
public int Count { get; set; }
public virtual ConferenceBooking ConferenceBookings { get; set; }
public virtual Lunch Lunches { get; set; }
}
}