DRAB/Pcm.Db/Entities/FormZgod.cs
2025-07-11 10:50:46 +02:00

12 lines
305 B
C#

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; }
}