SushiBarBase/SushiBar/SushiBarDatabaseImplement/Models/SushiComponent.cs
2024-03-13 10:24:19 +04:00

19 lines
483 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();
}
}