DRAB/Pcm.Db/Entities/KartaLoj.cs
2025-07-11 10:50:46 +02:00

26 lines
830 B
C#

namespace Pcm.Db.Entities;
public class KartaLoj
{
public KartaLoj()
{
NrRejKarta = new HashSet<NrRejKartum>();
ZdarzLojs = new HashSet<ZdarzLoj>();
}
public decimal KartaId { get; set; }
public decimal KontoId { get; set; }
public short TypKarty { get; set; }
public string KodKarty { get; set; }
public DateTime? WaznaOd { get; set; }
public DateTime? WaznaDo { get; set; }
public DateTime? Uniewazniono { get; set; }
public string Posiadacz { get; set; }
public string Opis1 { get; set; }
public string Opis2 { get; set; }
public decimal? CentrKartaId { get; set; }
public virtual KontoLoj Konto { get; set; }
public virtual ICollection<NrRejKartum> NrRejKarta { get; set; }
public virtual ICollection<ZdarzLoj> ZdarzLojs { get; set; }
}