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

28 lines
819 B
C#

using System;
using System.Collections.Generic;
#nullable disable
namespace Pcm.Db.Entities;
public class Profil
{
public Profil()
{
ProfilKonfigs = new HashSet<ProfilKonfig>();
SklepProfils = new HashSet<SklepProfil>();
Uzytkowniks = new HashSet<Uzytkownik>();
}
public decimal ProfilId { get; set; }
public short Typ { get; set; }
public string Nazwa { get; set; }
public short? Aktywny { get; set; }
public DateTime? Zmiana { get; set; }
public DateTime? Utworzony { get; set; }
public virtual ProfilKasa ProfilKasa { get; set; }
public virtual ICollection<ProfilKonfig> ProfilKonfigs { get; set; }
public virtual ICollection<SklepProfil> SklepProfils { get; set; }
public virtual ICollection<Uzytkownik> Uzytkowniks { get; set; }
}