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