27 lines
898 B
C#
27 lines
898 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace bdAntifraude.clases
|
|
{
|
|
public class PuestoPersona
|
|
{
|
|
public string Puesto { get; set; } = "";
|
|
public string Nivel { get; set; } = "";
|
|
public string Adscripcion { get; set; } = "";
|
|
public string Grupo { get; set; } = "";
|
|
public DateTime FechaToPo { get; set; }
|
|
public string MotivoToPo { get; set; } = "";
|
|
public string CaracterOcu { get; set; } = "";
|
|
public DateTime FechaCese { get; set; }
|
|
public string MotivoCese { get; set; } = "";
|
|
public int AnosSer { get; set; }
|
|
public int MesesSer { get; set; }
|
|
public int DiasSer { get; set; }
|
|
public string unidadAdministrativa { get; set; } = "";
|
|
public string servicioAdscrito { get; set; } = "";
|
|
}
|
|
}
|