DRAB/Pcm.Db/Entities/Rola.cs
2025-07-11 00:18:14 +02:00

24 lines
542 B
C#

using System;
using System.Collections.Generic;
#nullable disable
namespace Pcm.Db.Entities;
public class Rola
{
public Rola()
{
SklepRolas = new HashSet<SklepRola>();
}
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<SklepRola> SklepRolas { get; set; }
}