using System; using System.Collections.Generic; namespace Blink.Backoffice.Services.PcmDb.Entities; public partial class RolaUprawnienie { public short RolaId { get; set; } public short Rodzaj { get; set; } public short? Jest { get; set; } public virtual Rola Rola { get; set; } = null!; }