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