Files
Antifraude.Net/Antifraude.Net/bdAntifraudeMYSQL/db/BLOQUEOS.cs
2026-09-21 12:52:08 +02:00

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; }
}