2024-05-16 10:37:44 +02:00

16 lines
341 B
C#

using System;
using System.Collections.Generic;
namespace Blink.Backoffice.Services.PcmDb.Entities;
public partial class PanelParam
{
public decimal PanelId { get; set; }
public string ParNazwa { get; set; } = null!;
public string ParWartosc { get; set; } = null!;
public virtual Panel Panel { get; set; } = null!;
}