12 lines
315 B
C#
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; }
|
|
} |