INotifyPropertyChanged was introduced in .NET 2.0. This interface has only one member, the PropertyChanged event that will notify listeners when a property of the implementing class is changed.

Demo

Conclusion

The INotifyPropertyChanged interface will notify the source of changes to the target.