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

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