30 lines
958 B
C#
30 lines
958 B
C#
namespace Pcm.Db.Entities;
|
|
|
|
public class Panel
|
|
{
|
|
public Panel()
|
|
{
|
|
PanelParams = new HashSet<PanelParam>();
|
|
SklepPanels = new HashSet<SklepPanel>();
|
|
}
|
|
|
|
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<PanelParam> PanelParams { get; set; }
|
|
public virtual ICollection<SklepPanel> SklepPanels { get; set; }
|
|
} |