mirror of
https://github.com/2dust/v2rayN.git
synced 2026-04-16 04:25:45 +00:00
Create LiteMainWindowViewModel.cs in lite-ui branch
This commit is contained in:
parent
9f26386283
commit
d832b3f07c
1 changed files with 19 additions and 0 deletions
19
ViewModels/LiteMainWindowViewModel.cs
Normal file
19
ViewModels/LiteMainWindowViewModel.cs
Normal 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));
|
||||
}
|
||||
}
|
||||
}
|
||||
Loading…
Reference in a new issue