Files
Proftaak-RH-B4/ClientApp/Utils/ObservableObject.cs
shinichi 6e2b3a80b3 wip
2020-10-07 13:17:40 +02:00

13 lines
276 B
C#

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