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

12 lines
248 B
C#

#nullable disable
namespace Pcm.Db.Entities;
public class PanelParam
{
public decimal PanelId { get; set; }
public string ParNazwa { get; set; }
public string ParWartosc { get; set; }
public virtual Panel Panel { get; set; }
}