Apigateway/Microservicios/MsUsuarios/Dto/Externos/MsAgendaMedica/MedicoDto.cs

32 lines
1.3 KiB
C#

namespace MSAdminUsuarios.Dto.Externos.MsAgendaMedica
{
public class MedicoDto
{
public int? NU_TIPOID_MDC { get; set; }
public string TX_DOCUMENTO_MDC { get; set; } = null!;
public string? TX_REGPROF_MDC { get; set; }
public string? TX_CODIGO_MDC { get; set; }
public int? NU_CARGO_MDC { get; set; }
public int? NU_TIPOPROF_MDC { get; set; }
public string? TX_PRINOMBRE_MDC { get; set; }
public string? TX_SEGNOMBRE_MDC { get; set; }
public string? TX_PRIAPELLIDO_MDC { get; set; }
public string? TX_SEGAPELLIDO_MDC { get; set; }
public string? TX_DIRECCION_MDC { get; set; }
public string? TX_EMAIL_MDC { get; set; }
public string? TX_TELEFONO_MDC { get; set; }
public string? NU_CELULAR_MDC { get; set; }
public int? NU_MODCONTRATACION_MDC { get; set; }
public string? TX_ESPECIALIDAD_MDC { get; set; }
public int? BL_ADSCRITO_MDC { get; set; }
public int? BL_PERCITAWEB_MDC { get; set; }
public int? BL_ESTADO_MDC { get; set; }
public int? NU_MAXCITASEXTRA_MDC { get; set; }
public string? TX_GRUPOSCUPS_MDC { get; set; }
public string? CL_AGENDA_MDC { get; set; }
public string? TX_LUGARESATEN_MDC { get; set; }
public string? TX_UUID_MDC { get; set; }
}
}