wabbajack/Wabbajack.Installer/InstallerConfiguration.cs

16 lines
491 B
C#
Raw Normal View History

2021-09-27 12:42:46 +00:00
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; }
}
}