Dem_Timofeev_itog/DEM_Timofeev_prob/Models/Manufact.cs

14 lines
297 B
C#

using System;
using System.Collections.Generic;
namespace DEM_Timofeev_prob.Models;
public partial class Manufact
{
public int Idmanufact { get; set; }
public string Name { get; set; } = null!;
public virtual ICollection<Product> Products { get; set; } = new List<Product>();
}