Files
2026-05-19 16:45:53 +02:00

18 lines
401 B
C#

using System;
using System.Collections.Generic;
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!;
}