9 lines
219 B
C#
9 lines
219 B
C#
namespace Shared.DTO.Integracion_DGA
|
|
{
|
|
public class HistoricResponse
|
|
{
|
|
public string Uid { get; set; }
|
|
public double? Value { get; set; }
|
|
public double TimeStamp { get; set; }
|
|
}
|
|
}
|