SamusevWinApp/Manufacturer.cs

14 lines
303 B
C#

using System;
using System.Collections.Generic;
namespace samusev_42;
public partial class Manufacturer
{
public int IdManufacturer { get; set; }
public string ManufacturerName { get; set; } = null!;
public virtual ICollection<Product> Products { get; set; } = new List<Product>();
}