11 lines
312 B
C#
11 lines
312 B
C#
namespace Shared.DTO.Integracion_DGA
|
|
{
|
|
public class HistoricRequest
|
|
{
|
|
public string DataSource { get; set; }
|
|
public string Resolution { get; set; }
|
|
public List<string> Uids { get; set; }
|
|
public long StartTs { get; set; }
|
|
public long EndTs { get; set; }
|
|
}
|
|
}
|