mirror of
https://github.com/sp-tarkov/launcher.git
synced 2025-02-13 08:50:43 -05:00
10 lines
171 B
C#
10 lines
171 B
C#
|
using ReactiveUI;
|
||
|
|
||
|
namespace Aki.Launcher.ViewModels;
|
||
|
|
||
|
public class ModInfoViewModel : ViewModelBase
|
||
|
{
|
||
|
public ModInfoViewModel(IScreen Host) : base(Host)
|
||
|
{
|
||
|
}
|
||
|
}
|