19 lines
525 B
C#
19 lines
525 B
C#
#nullable disable
|
|
|
|
namespace Pcm.Db.Entities;
|
|
|
|
public class KodDod
|
|
{
|
|
public decimal TowId { get; set; }
|
|
public short Kolejnosc { get; set; }
|
|
public string Skrot { get; set; }
|
|
public string Kod { get; set; }
|
|
public short PoziomCen { get; set; }
|
|
public int PrefPlu { get; set; }
|
|
public decimal? IleWkodzie { get; set; }
|
|
public short? TypKodu { get; set; }
|
|
public string SubsysKoduDod { get; set; }
|
|
public short? KodCentralny { get; set; }
|
|
|
|
public virtual Towar Tow { get; set; }
|
|
} |