using System.Collections.Generic; #nullable disable namespace Pcm.Db.Entities; public class Polityka { public Polityka() { HarmWpis = new HashSet(); PolMags = new HashSet(); PolParams = new HashSet(); } 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 HarmWpis { get; set; } public virtual ICollection PolMags { get; set; } public virtual ICollection PolParams { get; set; } }