Dem_Timofeev_itog/DEM_Timofeev_prob/Models/Suplier.cs

14 lines
295 B
C#

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