16 lines
348 B
C#
16 lines
348 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Blink.Backoffice.Services.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>();
|
|
}
|