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

22 lines
549 B
C#

using System.Collections.Generic;
#nullable disable
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; }
}