13 lines
263 B
C#
13 lines
263 B
C#
namespace Blink.Backoffice.Services.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!;
|
|
}
|