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

18 lines
495 B
C#

namespace Pcm.Db.Entities;
public class SklepArtykul
{
public SklepArtykul()
{
SklepTowars = new HashSet<SklepTowar>();
}
public decimal SklepId { get; set; }
public decimal SklepArtId { get; set; }
public string ArtNazwa { get; set; }
public decimal? GlownySklepTowId { get; set; }
public virtual Sklep Sklep { get; set; }
public virtual SklepTowar SklepTowar { get; set; }
public virtual ICollection<SklepTowar> SklepTowars { get; set; }
}