25 lines
964 B
C#
25 lines
964 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace MSAdminUsuarios.Context
|
|
{
|
|
public partial class USUARIOSTEMP
|
|
{
|
|
public int NU_PK_USUTMP { get; set; }
|
|
public int? NU_TIPODOC_USUMS { get; set; }
|
|
public string? TX_PKDOC_USUMS { get; set; }
|
|
public string? TX_PRIMERNOM_USUMS { get; set; }
|
|
public string? TX_SEGUNDONOM_USUMS { get; set; }
|
|
public string? TX_PRIMERAPELL_USUMS { get; set; }
|
|
public string? TX_SEGUNDOAPELL_USUMS { get; set; }
|
|
public string? TX_NOMBRE_PVD { get; set; }
|
|
public string? TX_CORREO_USUMS { get; set; }
|
|
public string? TX_TELEFONO_USUMS { get; set; }
|
|
public string? TX_DIRECCION_USUMS { get; set; }
|
|
public int? NU_ESTADO_USUMS { get; set; }
|
|
public DateTime? FE_INICIOACTIVACION_USUTMP { get; set; }
|
|
public DateTime? FE_FINACTIVACION_USUTMP { get; set; }
|
|
public string? TX_UUID_USUMS { get; set; }
|
|
}
|
|
}
|