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

14 lines
324 B
C#

#nullable disable
namespace Pcm.Db.Entities;
public class FormZgod
{
public decimal TypOsId { get; set; }
public decimal ZgId { get; set; }
public short Kolejnosc { get; set; }
public short? Wymagana { get; set; }
public virtual TypO TypOs { get; set; }
public virtual Zgodum Zg { get; set; }
}