mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2025-08-04 06:22:25 -07:00
Move solution and projects to src
This commit is contained in:
15
src/Ryujinx.Ava/UI/ViewModels/BaseModel.cs
Normal file
15
src/Ryujinx.Ava/UI/ViewModels/BaseModel.cs
Normal file
@@ -0,0 +1,15 @@
|
||||
using System.ComponentModel;
|
||||
using System.Runtime.CompilerServices;
|
||||
|
||||
namespace Ryujinx.Ava.UI.ViewModels
|
||||
{
|
||||
public class BaseModel : INotifyPropertyChanged
|
||||
{
|
||||
public event PropertyChangedEventHandler PropertyChanged;
|
||||
|
||||
protected void OnPropertyChanged([CallerMemberName] string propertyName = null)
|
||||
{
|
||||
PropertyChanged?.Invoke(this, new PropertyChangedEventArgs(propertyName));
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user