mirror of
https://github.com/2dust/v2rayN.git
synced 2025-08-29 06:16:22 +00:00
9 lines
203 B
C#
9 lines
203 B
C#
using ReactiveUI;
|
|
|
|
namespace ServiceLib.Base;
|
|
|
|
public class MyReactiveObject : ReactiveObject
|
|
{
|
|
protected static Config? _config;
|
|
protected Func<EViewAction, object?, Task<bool>>? _updateView;
|
|
}
|