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 Products { get; set; } = new List(); }