refactor: rename NotifyPropertyChanged to ObservableObject

This commit is contained in:
k0t9i
2023-01-31 19:09:07 +04:00
parent bd50473bfb
commit 5388dea95f
16 changed files with 16 additions and 16 deletions

View File

@ -9,7 +9,7 @@ using System.Threading.Tasks;
namespace Client.Application.ViewModels
{
public class CreatureListViewModel : NotifyPropertyChanged
public class CreatureListViewModel : ObservableObject
{
public uint Id => creature.Id;

View File

@ -8,7 +8,7 @@ using System.Threading.Tasks;
namespace Client.Application.ViewModels
{
public class DropListViewModel : NotifyPropertyChanged
public class DropListViewModel : ObservableObject
{
public uint Id
{

View File

@ -9,7 +9,7 @@ using System.Threading.Tasks;
namespace Client.Application.ViewModels
{
public class HeroSummaryInfoViewModel : NotifyPropertyChanged
public class HeroSummaryInfoViewModel : ObservableObject
{
public bool IsVisible {
get

View File

@ -18,7 +18,7 @@ using System.Windows.Media;
namespace Client.Application.ViewModels
{
public class MainViewModel :
NotifyPropertyChanged,
ObservableObject,
EventHandlerInterface<HeroCreatedEvent>,
EventHandlerInterface<HeroDeletedEvent>,
EventHandlerInterface<CreatureCreatedEvent>,