20 lines
673 B
C#
20 lines
673 B
C#
namespace SwaggerAntifraude.Models
|
|
{
|
|
public class Personal
|
|
{
|
|
public string Nombre { get; set; }
|
|
public string Dni { get; set; }
|
|
public int idPersona { get; set; }
|
|
public string Departamento { get; set; }
|
|
public string Roll { get; set; }
|
|
public string Grupo { get; set; }
|
|
public int NumeroInciPorAceptar { get; set; }
|
|
public int NumeroInciBorrador { get; set; }
|
|
public DateTime FeIniInciPorAceptar { get; set; }
|
|
public DateTime FeFinInciPorAceptar { get; set; }
|
|
public DateTime FeIniInciBorrador { get; set; }
|
|
public DateTime FeFinInciBorrador { get; set; }
|
|
|
|
}
|
|
}
|