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

16 lines
331 B
C#

using System;
#nullable disable
namespace Pcm.Db.Entities;
public class TekstZgody
{
public decimal ZgId { get; set; }
public string Wersja { get; set; }
public int Kolejnosc { get; set; }
public string Tekst { get; set; }
public DateTime Zmiana { get; set; }
public virtual Zgodum Zg { get; set; }
}