13 lines
283 B
C#
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; }
|
|
} |