2024-05-16 10:37:44 +02:00

36 lines
842 B
C#

using System;
using System.Collections.Generic;
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>();
}