wabbajack/Wabbajack.Installer/InstallerConfiguration.cs
2021-09-27 06:42:46 -06:00

16 lines
491 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; }
}
}