16 lines
312 B
C#
16 lines
312 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
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!;
|
|
}
|