DRAB/Pcm.Db/Entities/NrRej.cs
2025-07-11 00:18:14 +02:00

21 lines
473 B
C#

using System.Collections.Generic;
#nullable disable
namespace Pcm.Db.Entities;
public class NrRej
{
public NrRej()
{
NrRejKarta = new HashSet<NrRejKartum>();
}
public decimal KontrId { get; set; }
public string NrFormat { get; set; }
public string NrWpisany { get; set; }
public short WyborKart { get; set; }
public virtual Kontrahent Kontr { get; set; }
public virtual ICollection<NrRejKartum> NrRejKarta { get; set; }
}