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

18 lines
389 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!;
}