10 lines
228 B
C#
10 lines
228 B
C#
using Prism.Events;
|
|
|
|
namespace FATrace.WPLApp.Events
|
|
{
|
|
/// <summary>
|
|
/// 请求刷新 Dashboard 统计信息的事件(无负载)。
|
|
/// </summary>
|
|
public class DashboardRefreshEvent : PubSubEvent<bool> { }
|
|
}
|