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

10 lines
229 B
C#

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; }
}