2025-06-24 16:02:27 -04:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
2025-06-25 13:01:32 -04:00
|
|
|
|
namespace Shared.DTO.Envios_DGA
|
2025-06-24 16:02:27 -04:00
|
|
|
|
{
|
|
|
|
|
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; }
|
|
|
|
|
}
|
|
|
|
|
}
|