12 lines
374 B
C#
12 lines
374 B
C#
namespace Shared.DTO.Envios_DGA
|
|
{
|
|
public class LogMedicionEnvio
|
|
{
|
|
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 IdDgaDato { get; set; }
|
|
}
|
|
}
|