2024-07-01 21:28:20 +02:00

13 lines
280 B
C#

namespace DuSoft.PcmDb.Entities;
public partial class NumDok
{
public short TypNumeru { get; set; }
public int Licznik { get; set; }
public string Format { get; set; } = null!;
public virtual ICollection<NumMag> NumMag { get; set; } = new List<NumMag>();
}