26 lines
800 B
C#
26 lines
800 B
C#
namespace Shared.DTO.Envios_DGA
|
|
{
|
|
public class MedicionSubterraneaRequest
|
|
{
|
|
public Autenticacion Autenticacion { get; set; } = new();
|
|
public Medicion MedicionSubterranea { get; set; } = new();
|
|
}
|
|
|
|
public class Autenticacion
|
|
{
|
|
public string Password { get; set; } = string.Empty;
|
|
public string RutEmpresa { get; set; } = string.Empty;
|
|
public string RutUsuario { get; set; } = string.Empty;
|
|
}
|
|
|
|
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; }
|
|
public string? TipoEmpresa { get; set; }
|
|
|
|
}
|
|
}
|