SPT-AKI-Installer/SPTInstaller/Views/InstallView.axaml.cs

12 lines
234 B
C#
Raw Permalink Normal View History

2023-05-11 23:11:39 -04:00
using Avalonia.ReactiveUI;
using SPTInstaller.ViewModels;
namespace SPTInstaller.Views;
public partial class InstallView : ReactiveUserControl<InstallViewModel>
2023-05-11 23:11:39 -04:00
{
public InstallView()
2023-05-11 23:11:39 -04:00
{
InitializeComponent();
2023-05-11 23:11:39 -04:00
}
}