23 lines
632 B
C#
23 lines
632 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace FoodOrdersDatabaseImplement.Models
|
|
{
|
|
public class DishComponent
|
|
{
|
|
public int Id { get; set; }
|
|
[Required]
|
|
public int DishId { get; set; }
|
|
[Required]
|
|
public int ComponentId { get; set; }
|
|
[Required]
|
|
public int Count { get; set; }
|
|
public virtual Component Component { get; set; } = new();
|
|
public virtual Dish Dish { get; set; } = new();
|
|
}
|
|
}
|