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

27 lines
717 B
C#

using System;
using System.Collections.Generic;
#nullable disable
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; }
}