23 lines
881 B
C#
23 lines
881 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_USUTMP { get; set; }
|
|||
|
public string? TX_IDENTIFICACION_USUTMP { get; set; }
|
|||
|
public string? TX_PRIMERNOM_USUTMP { get; set; }
|
|||
|
public string? TX_SEGUNDONOM_USUTMP { get; set; }
|
|||
|
public string? TX_PRIMERAPELL_USUTMP { get; set; }
|
|||
|
public string? TX_SEGUNDOAPELL_USUTMP { get; set; }
|
|||
|
public string? TX_NOMBREPVD_USUTMP { get; set; }
|
|||
|
public string? TX_CORREO_USUTMP { get; set; }
|
|||
|
public string? TX_TELEFONO_USUTMP { get; set; }
|
|||
|
public int? NU_ESTADO_USUTMP { get; set; }
|
|||
|
public DateTime? FE_INICIOACTIVACION_USUTMP { get; set; }
|
|||
|
public DateTime? FE_FINACTIVACION_USUTMP { get; set; }
|
|||
|
}
|
|||
|
}
|