20 lines
376 B
C#
20 lines
376 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using PropertyChanged;
|
|
|
|
namespace bdAsegasa.db;
|
|
|
|
[AddINotifyPropertyChangedInterface]
|
|
public partial class conexiones
|
|
{
|
|
public int idConexion { get; set; }
|
|
|
|
public string? Usuario { get; set; }
|
|
|
|
public string? ip { get; set; }
|
|
|
|
public DateTime? FechaHora { get; set; }
|
|
|
|
public int idMysql { get; set; }
|
|
}
|