17 lines
413 B
C#
17 lines
413 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Shared.DTO
|
|
{
|
|
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; }
|
|
}
|
|
}
|