mirror of
https://github.com/2dust/v2rayN.git
synced 2026-08-02 21:32:03 +03:00
11 lines
270 B
C#
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;
|
|
}
|
|
} |