27 lines
941 B
C#
27 lines
941 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace CR.Atesa.VacacionesModel
|
|
{
|
|
public class SolicitudVacaciones: UltimusJson
|
|
{
|
|
public string CodigoEmpresa { get; set; }
|
|
public string UsuarioUltimus { get; set; }
|
|
public string Identificacion { get; set; }
|
|
public string Nombre { get; set; }
|
|
public int NumeroEmpleado { get; set; }
|
|
public DateTime FechaInicial { get; set; }
|
|
public DateTime FechaFinal { get; set; }
|
|
public int TotalDias { get; set; }
|
|
public string Periodo { get; set; }
|
|
public int NumSolicitud { get; set; }
|
|
public string Observacionespublic { get; set; }
|
|
public string IndDecisionpublic { get; set; }
|
|
public string MensajeError { get; set; }
|
|
public string Email { get; set; }
|
|
public int Disponible { get; set; }
|
|
}
|
|
}
|