Files
Asegasa.NET/bdAsegasa/db/bloqueos.cs

20 lines
435 B
C#

using System;
using System.Collections.Generic;
using PropertyChanged;
namespace bdAsegasa.db;
[AddINotifyPropertyChangedInterface]
public partial class bloqueos
{
public int idBloqueo { get; set; }
public int idSesion { get; set; }
public string Aplicacion { get; set; } = null!;
public string idRegistroBloqueado { get; set; } = null!;
public virtual sesiones idSesionNavigation { get; set; } = null!;
}