mirror of
https://github.com/wabbajack-tools/wabbajack.git
synced 2024-08-30 18:42:17 +00:00
25 lines
625 B
C#
25 lines
625 B
C#
|
using System.Linq;
|
|||
|
using System.Threading;
|
|||
|
using Microsoft.Extensions.Logging;
|
|||
|
using ReactiveUI.Fody.Helpers;
|
|||
|
using Wabbajack.Compiler;
|
|||
|
using Wabbajack.DTOs;
|
|||
|
using Wabbajack.Networking.WabbajackClientApi;
|
|||
|
using Wabbajack.Services.OSIntegrated.Services;
|
|||
|
|
|||
|
namespace Wabbajack
|
|||
|
{
|
|||
|
public class CreatedModlistVM
|
|||
|
{
|
|||
|
private ILogger _logger;
|
|||
|
[Reactive]
|
|||
|
public CompilerSettings CompilerSettings { get; set; }
|
|||
|
|
|||
|
public CreatedModlistVM(ILogger logger, CompilerSettings compilerSettings)
|
|||
|
{
|
|||
|
_logger = logger;
|
|||
|
CompilerSettings = compilerSettings;
|
|||
|
}
|
|||
|
}
|
|||
|
}
|