namespace Pcm.Db.Entities; public class NumDok { public NumDok() { NumMags = new HashSet(); } public short TypNumeru { get; set; } public int Licznik { get; set; } public string Format { get; set; } public virtual ICollection NumMags { get; set; } }