using System; using System.Collections.Generic; #nullable disable namespace Pcm.Db.Entities; public class Partium { public Partium() { RozliczeniePartiis = new HashSet(); } 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 RozliczeniePartiis { get; set; } }