2021-09-27 12:42:46 +00:00
|
|
|
using Wabbajack.DTOs;
|
|
|
|
using Wabbajack.Paths;
|
|
|
|
|
2021-10-23 16:51:17 +00:00
|
|
|
namespace Wabbajack.Installer;
|
|
|
|
|
|
|
|
public class InstallerConfiguration
|
2021-09-27 12:42:46 +00:00
|
|
|
{
|
2021-10-23 16:51:17 +00:00
|
|
|
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; }
|
2021-09-27 12:42:46 +00:00
|
|
|
}
|