Files
2026-05-19 16:45:53 +02:00

18 lines
380 B
C#

using System;
using System.Collections.Generic;
namespace Blink.Backoffice.Services.PcmDb.Entities;
public partial class SzczegPrtMag
{
public decimal TowId { get; set; }
public decimal PMId { get; set; }
public short TypDanych { get; set; }
public string Tekst { get; set; } = null!;
public virtual PrtMag PrtMag { get; set; } = null!;
}