mirror of
https://github.com/sp-tarkov/installer.git
synced 2025-02-13 08:10:46 -05:00
12 lines
267 B
C#
12 lines
267 B
C#
|
using Avalonia.ReactiveUI;
|
|||
|
using SPTInstaller.ViewModels;
|
|||
|
|
|||
|
namespace SPTInstaller.Views;
|
|||
|
public partial class DetailedPreChecksView : ReactiveUserControl<DetailedPreChecksViewModel>
|
|||
|
{
|
|||
|
public DetailedPreChecksView()
|
|||
|
{
|
|||
|
InitializeComponent();
|
|||
|
}
|
|||
|
}
|