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

38 lines
1.2 KiB
C#

using System;
using System.Collections.Generic;
#nullable disable
namespace Pcm.Db.Entities;
public class HarmWpi
{
public HarmWpi()
{
HarmCenies = new HashSet<HarmCeny>();
HarmCykls = new HashSet<HarmCykl>();
HarmHarmHarms = new HashSet<HarmHarm>();
HarmHarmPoprzHarms = new HashSet<HarmHarm>();
}
public decimal HarmId { get; set; }
public short HarmTyp { get; set; }
public string Nazwa { get; set; }
public string Opcje { get; set; }
public short Aktywny { get; set; }
public short Uwzgledniony { get; set; }
public DateTime Zmiana { get; set; }
public decimal? PolId { get; set; }
public decimal? CentrHarmId { get; set; }
public DateTime? WaznyOd { get; set; }
public DateTime? WaznyDo { get; set; }
public decimal? KrajId { get; set; }
public short? CenyBrutto { get; set; }
public virtual Kraj Kraj { get; set; }
public virtual Polityka Pol { get; set; }
public virtual ICollection<HarmCeny> HarmCenies { get; set; }
public virtual ICollection<HarmCykl> HarmCykls { get; set; }
public virtual ICollection<HarmHarm> HarmHarmHarms { get; set; }
public virtual ICollection<HarmHarm> HarmHarmPoprzHarms { get; set; }
}