using System; using System.Collections.Generic; namespace Blink.Backoffice.Services.PcmDb.Entities; public partial class SklepUprawnienie { public decimal SklepId { get; set; } public decimal SklepUzId { get; set; } public short Rodzaj { get; set; } public short? Jest { get; set; } public virtual SklepUzytkownik SklepUzytkownik { get; set; } = null!; }