Files
v2rayN/v2rayN/ServiceLib/Base/MyReactiveObject.cs
2024-08-20 14:15:29 +08:00

11 lines
270 B
C#

using ReactiveUI;
namespace ServiceLib.Base
{
public class MyReactiveObject : ReactiveObject
{
protected static Config? _config;
protected Func<EViewAction, object?, bool>? _updateView;
protected NoticeHandler? _noticeHandler;
}
}