2024-07-01 21:28:20 +02:00

13 lines
244 B
C#

namespace DuSoft.PcmDb.Entities;
public partial class TowIntParam
{
public decimal TowId { get; set; }
public short Znaczenie { get; set; }
public int Param { get; set; }
public virtual Towar Tow { get; set; } = null!;
}