mirror of
https://github.com/2dust/v2rayN.git
synced 2026-09-13 18:02:07 +03:00
9 lines
199 B
C#
9 lines
199 B
C#
namespace ServiceLib.Base;
|
|
|
|
public class MyReactiveObject : ReactiveObject, IActivatableViewModel
|
|
{
|
|
protected static Config? _config;
|
|
|
|
public ViewModelActivator Activator { get; } = new();
|
|
}
|