16 lines
332 B
C#
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>();
|
|
}
|