Create LiteMainWindowViewModel.cs in lite-ui branch

This commit is contained in:
antallusion 2026-04-05 03:24:10 +03:00
parent 9f26386283
commit d832b3f07c

View file

@ -0,0 +1,19 @@
// LiteMainWindowViewModel.cs
using System;
using System.ComponentModel;
namespace v2rayN.ViewModels
{
public class LiteMainWindowViewModel : INotifyPropertyChanged
{
public event PropertyChangedEventHandler PropertyChanged;
// Properties, methods, and other members can be added here.
protected virtual void OnPropertyChanged(string propertyName)
{
PropertyChanged?.Invoke(this, new PropertyChangedEventArgs(propertyName));
}
}
}