DRAB/Pcm.Db/Entities/TowDodatek.cs
2025-07-11 00:18:14 +02:00

18 lines
488 B
C#

#nullable disable
namespace Pcm.Db.Entities;
public class TowDodatek
{
public decimal TowId { get; set; }
public short Kolejnosc { get; set; }
public decimal DodTowId { get; set; }
public decimal Ilosc { get; set; }
public decimal Cena { get; set; }
public short Domyslny { get; set; }
public short Obowiazkowy { get; set; }
public short? Param1 { get; set; }
public virtual Towar DodTow { get; set; }
public virtual Towar Tow { get; set; }
}