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

14 lines
334 B
C#

#nullable disable
namespace Pcm.Db.Entities;
public class SklepTekstZgody
{
public decimal SklepId { get; set; }
public decimal SklepZgId { get; set; }
public string Wersja { get; set; }
public int Kolejnosc { get; set; }
public string Tekst { get; set; }
public virtual SklepZgodum Sklep { get; set; }
}