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

16 lines
474 B
C#

namespace Pcm.Db.Entities;
public class RozPrtMag
{
public decimal TowId { get; set; }
public decimal Pmid { get; set; }
public short Znaczenie { get; set; }
public decimal DokId { get; set; }
public int Kolejnosc { get; set; }
public decimal? IloscPrt { get; set; }
public DateTime? Dzien { get; set; }
public DateTime? Zmiana { get; set; }
public virtual PozDok PozDok { get; set; }
public virtual PrtMag PrtMag { get; set; }
}