mirror of
https://github.com/wabbajack-tools/wabbajack.git
synced 2024-08-30 18:42:17 +00:00
19 lines
377 B
C#
19 lines
377 B
C#
|
using ReactiveUI;
|
||
|
using Wabbajack.Paths;
|
||
|
|
||
|
namespace Wabbajack.Messages;
|
||
|
|
||
|
public class LoadModlistForInstalling
|
||
|
{
|
||
|
public AbsolutePath Path { get; }
|
||
|
|
||
|
public LoadModlistForInstalling(AbsolutePath path)
|
||
|
{
|
||
|
Path = path;
|
||
|
}
|
||
|
|
||
|
public static void Send(AbsolutePath path)
|
||
|
{
|
||
|
MessageBus.Current.SendMessage(new LoadModlistForInstalling(path));
|
||
|
}
|
||
|
}
|