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

Commit

Permalink
Rename CounterPageState
Browse files Browse the repository at this point in the history
  • Loading branch information
YuriyDurov committed May 25, 2024
1 parent 24aa4e6 commit 381350c
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
namespace BitzArt.Blazor.MVVM.SampleApp;

public class CounterPageViewModel(RenderingEnvironment renderingEnvironment)
: ViewModel<CounterPageViewModelState>
: ViewModel<CounterPageState>
{
[NestViewModel]
public CounterViewModel Counter1 { get; set; } = null!;
Expand All @@ -26,7 +26,7 @@ protected override void OnDependenciesInjected()
}
}

public class CounterPageViewModelState : ComponentState
public class CounterPageState : ComponentState
{
public string Text { get; set; } = "Page State not initialized";
}

0 comments on commit 381350c

Please sign in to comment.