Dekrety #1
This commit is contained in:
19
Blink.Backoffice.Services.PcmDb/Entities/NrRej.cs
Normal file
19
Blink.Backoffice.Services.PcmDb/Entities/NrRej.cs
Normal file
@@ -0,0 +1,19 @@
|
||||
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>();
|
||||
}
|
||||
Reference in New Issue
Block a user