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

20 lines
508 B
C#

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