PIbd-21_BatylkinaAO_MusoevD.../Canteen/CanteenDatabaseImplement/Models/ProductCook.cs

26 lines
560 B
C#
Raw Normal View History

2023-04-07 10:55:40 +04:00
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CanteenDatabaseImplement.Models
{
public class ProductCook
{
2023-05-18 01:40:11 +04:00
public int Id { get; set; }
2023-04-07 10:55:40 +04:00
[Required]
public int ProductId { get; set; }
[Required]
public int CookId { get; set; }
public virtual Product Product { get; set; } = new();
public virtual Cook Cook { get; set; } = new();
}
}