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

14 lines
314 B
C#

#nullable disable
namespace Pcm.Db.Entities;
public class SklepZasob
{
public decimal SklepId { get; set; }
public short Tabela { get; set; }
public decimal Id { get; set; }
public string Typ { get; set; }
public string Sciezka { get; set; }
public virtual Sklep Sklep { get; set; }
}