17 lines
400 B
C#
17 lines
400 B
C#
namespace DuSoft.PcmDb.Entities;
|
|
|
|
public partial class NrRej
|
|
{
|
|
public decimal KontrId { get; set; }
|
|
|
|
public string NrFormat { get; set; } = null!;
|
|
|
|
public string NrWpisany { get; set; } = null!;
|
|
|
|
public short WyborKart { get; set; }
|
|
|
|
public virtual Kontrahent Kontr { get; set; } = null!;
|
|
|
|
public virtual ICollection<KartaLoj> Karta { get; set; } = new List<KartaLoj>();
|
|
}
|