wpf sucks

This commit is contained in:
Sem van der Hoeven
2020-10-12 16:32:23 +02:00
parent 6967fb625d
commit 7879aa301d
13 changed files with 311 additions and 11 deletions

View File

@@ -0,0 +1,12 @@
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Text;
namespace SharedClientServer
{
public abstract class ObservableObject : INotifyPropertyChanged
{
public event PropertyChangedEventHandler PropertyChanged;
}
}