using System; using System.Collections.Generic; #nullable disable namespace Pcm.Db.Entities; public class Rola { public Rola() { SklepRolas = new HashSet(); } public short RolaId { get; set; } public short Typ { get; set; } public short Aktywna { get; set; } public string Nazwa { get; set; } public DateTime Zmiana { get; set; } public short? Domyslna { get; set; } public short? CentrRolaId { get; set; } public virtual ICollection SklepRolas { get; set; } }