This commit is contained in:
shinichi
2020-10-07 13:17:40 +02:00
parent 71ff5dfc81
commit 6e2b3a80b3
17 changed files with 329 additions and 0 deletions

View File

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