mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2025-04-30 10:07:42 +02:00
17 lines
475 B
C#
17 lines
475 B
C#
using CommunityToolkit.Mvvm.ComponentModel;
|
|
using System;
|
|
|
|
namespace Ryujinx.Ava.UI.ViewModels
|
|
{
|
|
public class BaseModel : ObservableObject
|
|
{
|
|
protected void OnPropertiesChanged(string firstPropertyName, params ReadOnlySpan<string> propertyNames)
|
|
{
|
|
OnPropertyChanged(firstPropertyName);
|
|
foreach (string propertyName in propertyNames)
|
|
{
|
|
OnPropertyChanged(propertyName);
|
|
}
|
|
}
|
|
}
|
|
}
|