32 lines
806 B
C#
32 lines
806 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace bdAntifraudeMYSQL.clases
|
|
{
|
|
public class ParFicExcel
|
|
{
|
|
public string ClaveExcel { get; set; } = "";
|
|
public string texto1 { get; set; } = "";
|
|
public string texto2 { get; set; } = "";
|
|
public string Fecha { get; set; } = "";
|
|
}
|
|
public class NifPersona
|
|
{
|
|
public string Nif { get; set; } = "";
|
|
}
|
|
public class ResultadoObtenerHAD
|
|
{
|
|
public int Resultado { get; set; }
|
|
public string Mensaje { get; set; }
|
|
public string HAD { get; set; }
|
|
}
|
|
public class DatGenNom
|
|
{
|
|
public List<int> Personas { get; set; } = new List<int>();
|
|
public int Idnomina { get; set; }
|
|
}
|
|
}
|