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

11 lines
264 B
C#

namespace Pcm.Db.Entities;
public class SzczegPrtMag
{
public decimal TowId { get; set; }
public decimal Pmid { get; set; }
public short TypDanych { get; set; }
public string Tekst { get; set; }
public virtual PrtMag PrtMag { get; set; }
}