mirror of
https://github.com/2dust/v2rayN.git
synced 2026-08-02 13:22:06 +03:00
10 lines
196 B
C#
10 lines
196 B
C#
using System.Reactive;
|
|
using System.Reactive.Subjects;
|
|
|
|
namespace ServiceLib.Handler;
|
|
|
|
public static class AppEvents
|
|
{
|
|
public static readonly Subject<Unit> ProfilesRefreshRequested = new();
|
|
}
|