20 lines
424 B
C#
20 lines
424 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using PropertyChanged;
|
|
|
|
namespace bdAntifraudeMYSQL.db;
|
|
|
|
[AddINotifyPropertyChangedInterface]
|
|
public partial class BLOQUEOS
|
|
{
|
|
public int IDBLOQUEO { get; set; }
|
|
|
|
public int? IDCONEXION { get; set; }
|
|
|
|
public string? APLICACION { get; set; }
|
|
|
|
public int? IDREGISTROBLOQUEADO { get; set; }
|
|
|
|
public virtual CONEXIONES? IDCONEXIONNavigation { get; set; }
|
|
}
|