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

28 lines
880 B
C#

namespace Pcm.Db.Entities;
public class SklepPanel
{
public SklepPanel()
{
SklepPanelParams = new HashSet<SklepPanelParam>();
}
public decimal SklepId { get; set; }
public decimal SklepPanelId { get; set; }
public short Aktywny { get; set; }
public short Rodzaj { get; set; }
public decimal? SklepUzId { get; set; }
public int? Param1 { get; set; }
public string Nazwa { get; set; }
public short? T { get; set; }
public short? L { get; set; }
public short? H { get; set; }
public short? W { get; set; }
public DateTime Zmiana { get; set; }
public decimal? PanelId { get; set; }
public short TypAplikacji { get; set; }
public virtual Panel Panel { get; set; }
public virtual SklepUzytkownik Sklep { get; set; }
public virtual ICollection<SklepPanelParam> SklepPanelParams { get; set; }
}