2024-05-16 15:01:35 +02:00

15 lines
340 B
C#

namespace Blink.Backoffice.Services.PcmDb.Entities;
public partial class PolParam
{
public decimal PolId { get; set; }
public string ParGrupa { get; set; } = null!;
public string ParNazwa { get; set; } = null!;
public string ParWartosc { get; set; } = null!;
public virtual Polityka Pol { get; set; } = null!;
}