26 lines
559 B
C#
26 lines
559 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace bdAntifraudeMYSQL.clases
|
|
{
|
|
public class PeticionFichero
|
|
{
|
|
public int IdRegistro { get; set; }
|
|
public string Tabla { get; set; } = "";
|
|
public string Nif { get; set; } = "";
|
|
|
|
|
|
public PeticionFichero() { }
|
|
|
|
public PeticionFichero(int idRegistro, string tabla, string nif)
|
|
{
|
|
IdRegistro = idRegistro;
|
|
Tabla = tabla;
|
|
Nif = nif;
|
|
}
|
|
}
|
|
}
|