UWUVCI-AIO-WPF/UWUVCI AIO WPF/Models/BaseModel.cs
2020-04-06 21:30:31 +02:00

26 lines
No EOL
771 B
C#

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Runtime.CompilerServices;
using System.Text;
namespace UWUVCI_AIO_WPF
{
[Serializable]
public class BaseModel : INotifyPropertyChanged
{
// Declare the PropertyChanged event
public event PropertyChangedEventHandler PropertyChanged;
// OnPropertyChanged will raise the PropertyChanged event passing the
// source property that is being updated.
protected void OnPropertyChanged([CallerMemberName]string propertyName = "")
{
if (this.PropertyChanged != null)
{
PropertyChanged(this, new PropertyChangedEventArgs(propertyName));
}
}
}
}