SPT-AKI-Installer/SPTInstaller/Views/OverviewView.axaml.cs
waffle.lord 2ffa8f6b6d add overview page
also update some checks order
2024-07-10 13:00:52 -04:00

12 lines
240 B
C#

using Avalonia.ReactiveUI;
using SPTInstaller.ViewModels;
namespace SPTInstaller.Views;
public partial class OverviewView : ReactiveUserControl<OverviewViewModel>
{
public OverviewView()
{
InitializeComponent();
}
}