16 lines
314 B
C#
16 lines
314 B
C#
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!;
|
|
}
|