mirror of
https://github.com/Artemis-RGB/Artemis
synced 2025-12-12 21:38:38 +00:00
12 lines
307 B
C#
12 lines
307 B
C#
using ReactiveUI;
|
|
|
|
namespace Artemis.UI.Screens.StartupWizard.Steps;
|
|
|
|
public class WelcomeStepViewModel : WizardStepViewModel
|
|
{
|
|
public WelcomeStepViewModel()
|
|
{
|
|
Continue = ReactiveCommand.Create(() => Wizard.ChangeScreen<DefaultEntriesStepViewModel>());
|
|
ShowGoBack = false;
|
|
}
|
|
} |