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