PIbd-23_Elatomtsev_L.K._Con.../Confectionery/ConfectioneryDatabaseImplement/Models/PastryComponent.cs

17 lines
490 B
C#
Raw Normal View History

2024-04-10 11:44:57 +04:00
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();
}
}