repo2403/Producttype.cs
2025-03-24 14:59:01 +03:00

16 lines
332 B
C#

using System;
using System.Collections.Generic;
namespace demka2025_sedelnikov;
public partial class Producttype
{
public int Id { get; set; }
public string? ProductTypeName { get; set; }
public decimal? Coeff { get; set; }
public virtual ICollection<Product> Products { get; set; } = new List<Product>();
}