17 lines
407 B
C#
17 lines
407 B
C#
|
using System.ComponentModel.DataAnnotations;
|
|||
|
|
|||
|
namespace HotelDataBaseImplement.Models
|
|||
|
{
|
|||
|
public class RoomLunch
|
|||
|
{
|
|||
|
public int Id { get; set; }
|
|||
|
public int RoomId { get; set; }
|
|||
|
public int LunchId { get; set; }
|
|||
|
|
|||
|
[Required]
|
|||
|
public int Count { get; set; }
|
|||
|
public virtual Room Rooms { get; set; }
|
|||
|
public virtual Lunch Lunches { get; set; }
|
|||
|
}
|
|||
|
}
|