Files
v2rayN/v2rayN/ServiceLib/Base/MyReactiveObject.cs
2024-10-07 10:59:13 +08:00

10 lines
227 B
C#

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