Integracion envio de registros
This commit is contained in:
parent
765e9aaa98
commit
6cba1fef95
236 changed files with 251 additions and 13308 deletions
30
SHARED/DTO/MedicionSubterraneaRequest.cs
Normal file
30
SHARED/DTO/MedicionSubterraneaRequest.cs
Normal file
|
@ -0,0 +1,30 @@
|
|||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace Shared.DTO
|
||||
{
|
||||
public class MedicionSubterraneaRequest
|
||||
{
|
||||
public Autenticacion Autenticacion { get; set; }
|
||||
public Medicion MedicionSubterranea { get; set; }
|
||||
}
|
||||
|
||||
public class Autenticacion
|
||||
{
|
||||
public string Password { get; set; }
|
||||
public string RutEmpresa { get; set; }
|
||||
public string RutUsuario { get; set; }
|
||||
}
|
||||
|
||||
public class Medicion
|
||||
{
|
||||
public string Caudal { get; set; }
|
||||
public string FechaMedicion { get; set; }
|
||||
public string HoraMedicion { get; set; }
|
||||
public string NivelFreaticoDelPozo { get; set; }
|
||||
public string Totalizador { get; set; }
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue