init commit

This commit is contained in:
Rene Schwarz
2021-04-01 15:15:09 +02:00
commit 488494c273
61 changed files with 2025 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Text;
namespace Server_Dashboard {
class BaseViewModel : INotifyPropertyChanged {
public event PropertyChangedEventHandler PropertyChanged = (sender, e) => { };
protected void OnPropertyChanged(string prop) {
PropertyChanged?.Invoke(this, new PropertyChangedEventArgs(prop));
}
}
}