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

31 lines
898 B
C#

using System;
using System.Collections.Generic;
#nullable disable
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; }
}