30 lines
785 B
C#
30 lines
785 B
C#
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; }
|
|
}
|
|
}
|