ISEbd-22_Baygulov_A.A._Sush.../SushiBar/SushiBarDatabaseImplement/SushiComponent.cs

16 lines
480 B
C#

using System.ComponentModel.DataAnnotations;
namespace SushiBarDatabaseImplement.Models
{
public class SushiComponent
{
public int Id { get; set; }
[Required]
public int SushiId { get; set; }
[Required]
public int ComponentId { get; set; }
[Required]
public int Count { get; set; }
public virtual Component Component { get; set; } = new();
public virtual Sushi Sushi { get; set; } = new();
}
}