15 lines
321 B
C#
15 lines
321 B
C#
namespace DuSoft.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!;
|
|
}
|