ISEbd-21_Agliullov.D.A._Con.../ConfectioneryDatabaseImplement/PastryComponent.cs

19 lines
492 B
C#
Raw Normal View History

using System.ComponentModel.DataAnnotations;
namespace ConfectioneryDatabaseImplement.Models
{
public class PastryComponent
{
public int Id { get; set; }
[Required]
public int PastryId { get; set; }
[Required]
public int ComponentId { get; set; }
[Required]
public int Count { get; set; }
public virtual Component Component { get; set; } = new();
public virtual Pastry Pastry { get; set; } = new();
}
}