2024-05-16 10:37:44 +02:00

20 lines
410 B
C#

using System;
using System.Collections.Generic;
namespace Blink.Backoffice.Services.PcmDb.Entities;
public partial class FormZgod
{
public decimal TypOsId { get; set; }
public decimal ZgId { get; set; }
public short Kolejnosc { get; set; }
public short? Wymagana { get; set; }
public virtual TypOs TypOs { get; set; } = null!;
public virtual Zgoda Zg { get; set; } = null!;
}