mirror of
https://github.com/wabbajack-tools/wabbajack.git
synced 2024-08-30 18:42:17 +00:00
17 lines
501 B
C#
17 lines
501 B
C#
using Wabbajack.DTOs;
|
|
using Wabbajack.Paths;
|
|
|
|
namespace Wabbajack.Installer;
|
|
|
|
public class InstallerConfiguration
|
|
{
|
|
public AbsolutePath ModlistArchive { get; set; }
|
|
public ModList ModList { get; set; }
|
|
public AbsolutePath Install { get; set; }
|
|
public AbsolutePath Downloads { get; set; }
|
|
public SystemParameters? SystemParameters { get; set; }
|
|
public Game Game { get; set; }
|
|
public AbsolutePath GameFolder { get; set; }
|
|
|
|
public ModlistMetadata? Metadata { get; set; }
|
|
} |