Files
Proftaak-RH-B4/Hashing/ObservableObject.cs
2020-10-14 15:01:13 +02:00

13 lines
265 B
C#

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Text;
namespace Util
{
public abstract class ObservableObject : INotifyPropertyChanged
{
public event PropertyChangedEventHandler PropertyChanged;
}
}