18 lines
366 B
C#
18 lines
366 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using PropertyChanged;
|
|
|
|
namespace bdAntifraudeMYSQL.db;
|
|
|
|
[AddINotifyPropertyChangedInterface]
|
|
public partial class MAPEOSUSUARIOS
|
|
{
|
|
public int IDMAPEOUSUARIO { get; set; }
|
|
|
|
public string? USUARIO { get; set; }
|
|
|
|
public int? IDPERSONA { get; set; }
|
|
|
|
public DateTime? FECHAHORAVALIDEZ { get; set; }
|
|
}
|