2023-05-11 23:11:39 -04:00
|
|
|
using Avalonia.ReactiveUI;
|
|
|
|
using SPTInstaller.ViewModels;
|
|
|
|
|
2023-07-12 09:19:33 +02:00
|
|
|
namespace SPTInstaller.Views;
|
|
|
|
|
|
|
|
public partial class InstallView : ReactiveUserControl<InstallViewModel>
|
2023-05-11 23:11:39 -04:00
|
|
|
{
|
2023-07-12 09:19:33 +02:00
|
|
|
public InstallView()
|
2023-05-11 23:11:39 -04:00
|
|
|
{
|
2023-07-12 09:19:33 +02:00
|
|
|
InitializeComponent();
|
2023-05-11 23:11:39 -04:00
|
|
|
}
|
2023-07-12 09:19:33 +02:00
|
|
|
}
|