2024-07-01 21:28:20 +02:00

33 lines
774 B
C#

namespace DuSoft.PcmDb.Entities;
public partial class KartaLoj
{
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; } = null!;
public virtual ICollection<ZdarzLoj> ZdarzLoj { get; set; } = new List<ZdarzLoj>();
public virtual ICollection<NrRej> NrRej { get; set; } = new List<NrRej>();
}