11 lines
267 B
C#
11 lines
267 B
C#
namespace Pcm.Db.Entities;
|
|
|
|
public class PolParam
|
|
{
|
|
public decimal PolId { get; set; }
|
|
public string ParGrupa { get; set; }
|
|
public string ParNazwa { get; set; }
|
|
public string ParWartosc { get; set; }
|
|
|
|
public virtual Polityka Pol { get; set; }
|
|
} |