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

22 lines
488 B
C#

using System;
using System.Collections.Generic;
#nullable disable
namespace Pcm.Db.Entities;
public class SesjaAktywna
{
public SesjaAktywna()
{
Blokada = new HashSet<Blokadum>();
}
public decimal SesjaId { get; set; }
public DateTime Aktywnosc { get; set; }
public short Wylacznosc { get; set; }
public string IdProcesu { get; set; }
public virtual Sesja Sesja { get; set; }
public virtual ICollection<Blokadum> Blokada { get; set; }
}