DRAB/Pcm.Db/Entities/Partium.cs
2025-07-11 10:50:46 +02:00

22 lines
649 B
C#

namespace Pcm.Db.Entities;
public class Partium
{
public Partium()
{
RozliczeniePartiis = new HashSet<RozliczeniePartii>();
}
public decimal DokId { get; set; }
public int Kolejnosc { get; set; }
public short TypPartii { get; set; }
public decimal TowId { get; set; }
public decimal Pozostalo { get; set; }
public string Cecha1 { get; set; }
public string Cecha2 { get; set; }
public DateTime? DataWazn { get; set; }
public virtual PozDok PozDok { get; set; }
public virtual Towar Tow { get; set; }
public virtual ICollection<RozliczeniePartii> RozliczeniePartiis { get; set; }
}