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

13 lines
351 B
C#

namespace Pcm.Db.Entities;
public class RapWartPoczDane
{
public decimal Rwpid { get; set; }
public decimal MagId { get; set; }
public decimal Typ { get; set; }
public short Numer { get; set; }
public decimal Wartosc { get; set; }
public virtual Magazyn Mag { get; set; }
public virtual RapWartPocz Rwp { get; set; }
}