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

19 lines
361 B
C#

using System.Collections.Generic;
#nullable disable
namespace Pcm.Db.Entities;
public class NumDok
{
public NumDok()
{
NumMags = new HashSet<NumMag>();
}
public short TypNumeru { get; set; }
public int Licznik { get; set; }
public string Format { get; set; }
public virtual ICollection<NumMag> NumMags { get; set; }
}