DRAB/Pcm.Db/Entities/Polityka.cs
2025-07-11 00:18:14 +02:00

25 lines
669 B
C#

using System.Collections.Generic;
#nullable disable
namespace Pcm.Db.Entities;
public class Polityka
{
public Polityka()
{
HarmWpis = new HashSet<HarmWpi>();
PolMags = new HashSet<PolMag>();
PolParams = new HashSet<PolParam>();
}
public decimal PolId { get; set; }
public short Zastosowanie { get; set; }
public string Nazwa { get; set; }
public short Aktywny { get; set; }
public decimal? CentrPolId { get; set; }
public virtual ICollection<HarmWpi> HarmWpis { get; set; }
public virtual ICollection<PolMag> PolMags { get; set; }
public virtual ICollection<PolParam> PolParams { get; set; }
}