Files
Csharp-eindproject/SharedClientServer/ObservableObject.cs
Sem van der Hoeven 7879aa301d wpf sucks
2020-10-12 16:32:23 +02:00

13 lines
279 B
C#

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