2024-05-16 10:37:44 +02:00

28 lines
578 B
C#

using System;
using System.Collections.Generic;
namespace Blink.Backoffice.Services.PcmDb.Entities;
public partial 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; } = null!;
public virtual Towar Tow { get; set; } = null!;
}