DRAB/Pcm.Db/Entities/SklepTekstZgody.cs
2025-07-11 10:50:46 +02:00

12 lines
315 B
C#

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; }
}