23 lines
636 B
C#
23 lines
636 B
C#
namespace Shared.DTO.Envios_DGA
|
|
{
|
|
public class DatoDGATemporal
|
|
{
|
|
public int ID { get; set; }
|
|
public string? CODIGO_DGA { get; set; }
|
|
|
|
public string? CAUDAL { get; set; }
|
|
|
|
public string? ID_COMUNA { get; set; }
|
|
|
|
public string? TOTALIZADOR_CAUDAL { get; set; }
|
|
|
|
public DateTime? FECHA_MEDICION_CAUDAL { get; set; }
|
|
|
|
public string? NIVEL_FREATICO_DEL_POZO { get; set; }
|
|
|
|
public string? TIPO_EMPRESA { get; set; }
|
|
public string? RUT { get; set; }
|
|
public string? Password { get; set; }
|
|
public string? Empresa_Informante { get; set; }
|
|
}
|
|
}
|