0
0
mirror of https://github.com/sp-tarkov/installer.git synced 2025-02-13 09:50:45 -05:00
installer/SPTInstaller/ViewModels/DetailedPreChecksViewModel.cs

10 lines
205 B
C#
Raw Normal View History

using ReactiveUI;
namespace SPTInstaller.ViewModels;
public class DetailedPreChecksViewModel : PreChecksViewModel
{
2023-07-30 16:15:52 -04:00
public DetailedPreChecksViewModel(IScreen host) : base(host, null)
{
}
}