33 lines
793 B
C#
33 lines
793 B
C#
namespace Blink.Backoffice.Services.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>();
|
|
}
|