repo2403/Producttype.cs

16 lines
332 B
C#
Raw Permalink Normal View History

2025-03-24 11:59:01 +00:00
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>();
}