mirror of
https://github.com/sp-tarkov/installer.git
synced 2025-02-13 06:30:45 -05:00
10 lines
226 B
C#
10 lines
226 B
C#
using ReactiveUI;
|
|
|
|
namespace SPTInstaller.ViewModels;
|
|
public class DetailedPreChecksViewModel : PreChecksViewModel
|
|
{
|
|
public DetailedPreChecksViewModel(IScreen host, bool debugging) : base(host, debugging)
|
|
{
|
|
}
|
|
}
|