SelectedTournamentStore

This commit is contained in:
Natlinux81
2022-08-11 20:14:43 +02:00
parent e9b04dbe89
commit 960cf715ef
10 changed files with 93 additions and 38 deletions

View File

@@ -8,12 +8,12 @@ using System.Threading.Tasks;
namespace Apollon.WPF.ViewModels
{
public class ViewModelBase : INotifyPropertyChanged
{
{
public event PropertyChangedEventHandler PropertyChanged;
protected virtual void OnPrpertyChanged(string properyName = null)
protected virtual void OnPropertyChanged(string propertyName = null)
{
PropertyChanged?.Invoke(this, new PropertyChangedEventArgs(properyName));
PropertyChanged?.Invoke(this, new PropertyChangedEventArgs(propertyName));
}
}
}