Commit a53e9327 authored by 潘栩锋's avatar 潘栩锋 🚴

添加 AdPushEventArgs,PosPushEventArgs 用于 AD盒FLYAD7 自己产生推送周期

parent b4dcc970
......@@ -33,4 +33,18 @@ namespace FlyADBase
public DateTime Time { get; set; }
}
public delegate void TimeGridEventHandler(object sender, TimeGridEventArgs e);
public class AdPushEventArgs : EventArgs
{
public int Ad;
}
public delegate void AdPushEventHandler(object sender, AdPushEventArgs e);
public class PosPushEventArgs : EventArgs
{
public int Position;
public int Speed;
}
public delegate void PosPushEventHandler(object sender, PosPushEventArgs e);
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment