Files
FKGees/Blink.Backoffice.Services.PcmDb/Entities/FormZgod.cs
2026-05-19 16:45:53 +02:00

20 lines
423 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!;
}