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

35 lines
1.0 KiB
C#

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