mirror of
https://github.com/2dust/v2rayN.git
synced 2025-12-14 07:19:44 +05:00
10 lines
227 B
C#
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;
|
|
}
|
|
} |