Bewertungssystem angefangen
This commit is contained in:
@@ -8,11 +8,11 @@ using System.Threading.Tasks;
|
||||
|
||||
namespace dcnsanplanung.wpf.ViewModel
|
||||
{
|
||||
internal class BaseViewModel : INotifyPropertyChanged
|
||||
internal abstract class BaseViewModel : INotifyPropertyChanged
|
||||
{
|
||||
public event PropertyChangedEventHandler? PropertyChanged;
|
||||
|
||||
void OnPropertyChanged([CallerMemberName] string propertyName = "")
|
||||
protected void OnPropertyChanged([CallerMemberName] string propertyName = "")
|
||||
{
|
||||
if(PropertyChanged != null)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user