mirror of
https://github.com/wabbajack-tools/wabbajack.git
synced 2024-08-30 18:42:17 +00:00
14 lines
302 B
C#
14 lines
302 B
C#
|
using ReactiveUI;
|
||
|
using Wabbajack.App.Messages;
|
||
|
using Wabbajack.App.ViewModels;
|
||
|
|
||
|
namespace Wabbajack.App.Screens;
|
||
|
|
||
|
public class CompilerConfigurationViewModel : ViewModelBase, IReceiverMarker
|
||
|
{
|
||
|
public CompilerConfigurationViewModel()
|
||
|
{
|
||
|
Activator = new ViewModelActivator();
|
||
|
}
|
||
|
|
||
|
}
|