Files
2026-05-19 16:45:53 +02:00

20 lines
481 B
C#

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