using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace FlyADBase
{
public class TimeGridEventArgs : EventArgs
{
public TimeGridEventArgs()
{
}
public TimeGridEventArgs(DateTime time, TimeSpan tspan, int[] data)
{
Time = time;
Ts = tspan;
Data = data;
}
///
/// 数据
///
public int[] Data { get; set; }
///
/// 单数据时间间隔
///
public TimeSpan Ts { get; set; }
///
/// 开始时间点
///
public DateTime Time { get; set; }
}
public delegate void TimeGridEventHandler(object sender, TimeGridEventArgs e);
}