Skip to content

Commit

Permalink
Merge pull request #136 from MarioGK/renaming-viewmodelbase
Browse files Browse the repository at this point in the history
Renaming ViewModelBase => DialogViewModelBase
  • Loading branch information
SKProCH committed Dec 28, 2021
2 parents 938a3c0 + 05faaf1 commit f6f7796
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Material.Dialog/ViewModels/DialogWindowViewModel.cs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

namespace Material.Dialog.ViewModels
{
public abstract class DialogWindowViewModel : ViewModelBase
public abstract class DialogWindowViewModel : DialogViewModelBase
{
#region Base Properties
private string m_WindowTitle;
Expand Down
2 changes: 1 addition & 1 deletion Material.Dialog/ViewModels/TextField/TextFieldViewModel.cs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

namespace Material.Dialog.ViewModels.TextField
{
public class TextFieldViewModel : ViewModelBase
public class TextFieldViewModel : DialogViewModelBase
{
public event EventHandler<bool> OnValidateRequired;

Expand Down
6 changes: 3 additions & 3 deletions Material.Dialog/ViewModels/ViewModelBase.cs
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
using System.ComponentModel;
using System.Runtime.CompilerServices;
using System.Runtime.CompilerServices;

namespace Material.Dialog
namespace Material.Dialog.ViewModels
{
public class ViewModelBase : INotifyPropertyChanged
public class DialogViewModelBase : INotifyPropertyChanged
{
public event PropertyChangedEventHandler PropertyChanged;

Expand Down

0 comments on commit f6f7796

Please sign in to comment.