mirror of
https://github.com/2dust/v2rayN.git
synced 2026-08-11 09:42:05 +03:00
18 lines
717 B
C#
18 lines
717 B
C#
namespace ServiceLib.Events;
|
|
|
|
public static class AppEvents
|
|
{
|
|
public static readonly EventChannel<RxVoid> AddServerViaClipboardRequested = new();
|
|
public static readonly EventChannel<bool> HasUpdateNotified = new();
|
|
|
|
public static readonly EventChannel<ServerSpeedItem> DispatcherStatisticsRequested = new();
|
|
|
|
public static readonly EventChannel<string> SendSnackMsgRequested = new();
|
|
public static readonly EventChannel<string> SendMsgViewRequested = new();
|
|
|
|
public static readonly EventChannel<RxVoid> AppExitRequested = new();
|
|
public static readonly EventChannel<bool> ShutdownRequested = new();
|
|
|
|
public static readonly EventChannel<ESysProxyType> SysProxyChangeRequested = new();
|
|
}
|