SamusevWinApp/ProductName.cs

14 lines
297 B
C#

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