mirror of
https://github.com/bloxstraplabs/bloxstrap.git
synced 2025-04-22 02:21:27 -07:00
11 lines
360 B
C#
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));
|
|
}
|
|
}
|