using System; using System.Collections.Generic; namespace samusev_42; public partial class ProductName { public int IdProductName { get; set; } public string ProductName1 { get; set; } = null!; public virtual ICollection Products { get; set; } = new List(); }