using System; using System.Collections.Generic; #nullable disable namespace Pcm.Db.Entities; public class Panel { public Panel() { PanelParams = new HashSet(); SklepPanels = new HashSet(); } public decimal PanelId { get; set; } public short Aktywny { get; set; } public short Rodzaj { get; set; } public decimal? UzId { get; set; } public decimal? UzNsid { 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? CentrPanelId { get; set; } public short TypAplikacji { get; set; } public virtual Uzytkownik Uz { get; set; } public virtual UzNaSklep UzNs { get; set; } public virtual ICollection PanelParams { get; set; } public virtual ICollection SklepPanels { get; set; } }