Integracion_DGA/SHARED/DTO/Envios_DGA/MedicionScada.cs

28 lines
670 B
C#
Raw Normal View History

namespace Shared.DTO.Envios_DGA
2025-06-24 12:32:36 -04:00
{
2025-06-24 14:46:32 -04:00
public class MedicionScada
2025-06-24 12:32:36 -04:00
{
public long Id { get; set; }
2025-06-24 12:32:36 -04:00
public string? Code { get; set; }
public DateTime? DateOrigen { get; set; }
public DateTime? DateMedicionSup { get; set; }
public decimal? Caudal { get; set; }
public decimal? Altura { get; set; }
public DateTime? DateMedicionSub { get; set; }
public decimal? Totalizador { get; set; }
public decimal? Caudalsub { get; set; }
public decimal? Nivel { get; set; }
public string? tipo_empresa { get; set; }
2025-07-01 15:43:03 -04:00
public string? nivelFreaticoDelPozo { get; set; }
2025-06-24 12:32:36 -04:00
}
}