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

12 lines
235 B
C#

#nullable disable
namespace Pcm.Db.Entities;
public class TekstDok
{
public decimal DokId { get; set; }
public short Znaczenie { get; set; }
public string Tekst { get; set; }
public virtual Dok Dok { get; set; }
}