bloxstrap/Bloxstrap/UI/ViewModels/NotifyPropertyChangedViewModel.cs
2023-07-15 22:52:44 +01:00

11 lines
360 B
C#

using System.ComponentModel;
namespace Bloxstrap.UI.ViewModels
{
public class NotifyPropertyChangedViewModel : INotifyPropertyChanged
{
public event PropertyChangedEventHandler? PropertyChanged;
public void OnPropertyChanged(string propertyName) => PropertyChanged?.Invoke(this, new PropertyChangedEventArgs(propertyName));
}
}