using System; using System.Collections.Generic; namespace OOO_WriteAndClear.DBModels; public partial class Manufacturer { public int ManufacturerId { get; set; } public string ManufacturerName { get; set; } = null!; public virtual ICollection Products { get; set; } = new List(); }