2025-07-11 00:18:14 +02:00

27 lines
746 B
C#

using System;
using System.Collections.Generic;
#nullable disable
namespace Pcm.Db.Entities;
public class Ph
{
public Ph()
{
Phdanes = new HashSet<Phdane>();
Phodbiorcas = new HashSet<Phodbiorca>();
Phrozliczenies = new HashSet<Phrozliczenie>();
}
public decimal Phid { get; set; }
public decimal? KontrId { get; set; }
public string Nazwa { get; set; }
public short Aktywny { get; set; }
public DateTime Zmiana { get; set; }
public virtual Kontrahent Kontr { get; set; }
public virtual ICollection<Phdane> Phdanes { get; set; }
public virtual ICollection<Phodbiorca> Phodbiorcas { get; set; }
public virtual ICollection<Phrozliczenie> Phrozliczenies { get; set; }
}