Skip to content
This repository has been archived by the owner on Nov 1, 2024. It is now read-only.

Commit

Permalink
Make ViewModel.OnStateChanged public
Browse files Browse the repository at this point in the history
for now, while we are not restoring state automatically
  • Loading branch information
YuriyDurov committed May 10, 2024
1 parent 9c0d843 commit 0f8633b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/BitzArt.Blazor.MVVM/Models/ViewModel.cs
Original file line number Diff line number Diff line change
Expand Up @@ -72,5 +72,5 @@ public virtual void OnStateRestored() { }
/// <summary>
/// Called when the state has changed.
/// </summary>
protected virtual void OnStateChanged(TState state) { }
public virtual void OnStateChanged(TState state) { }
}

0 comments on commit 0f8633b

Please sign in to comment.