18 lines
508 B
C#
18 lines
508 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Shared.DTO.Envios_DGA
|
|
{
|
|
public class LogMedicionScada
|
|
{
|
|
public string EstadoEnvio { get; set; }
|
|
public string JsonEnviado { get; set; }
|
|
public string JsonRecibido { get; set; }
|
|
public string Comprobante { get; set; }
|
|
public DateTime FechaEnvio { get; set; }
|
|
public long IdMedicionSmartscadaOperacion { get; set; }
|
|
}
|
|
}
|