20 lines
457 B
C#
20 lines
457 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Blink.Backoffice.Services.PcmDb.Entities;
|
|
|
|
public partial class SesjaAktywna
|
|
{
|
|
public decimal SesjaId { get; set; }
|
|
|
|
public DateTime Aktywnosc { get; set; }
|
|
|
|
public short Wylacznosc { get; set; }
|
|
|
|
public string? IdProcesu { get; set; }
|
|
|
|
public virtual ICollection<Blokada> Blokada { get; set; } = new List<Blokada>();
|
|
|
|
public virtual Sesja Sesja { get; set; } = null!;
|
|
}
|