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

13 lines
283 B
C#

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