mirror of
https://github.com/2dust/v2rayN.git
synced 2026-04-16 04:25:45 +00:00
19 lines
498 B
C#
19 lines
498 B
C#
|
|
// 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));
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|