mirror of
https://github.com/wabbajack-tools/wabbajack.git
synced 2024-08-30 18:42:17 +00:00
2661450e28
This reverts commit e1b753edd3
.
24 lines
642 B
C#
24 lines
642 B
C#
using System;
|
|
using Wabbajack.Paths;
|
|
|
|
namespace Wabbajack.DTOs.SavedSettings;
|
|
|
|
public class InstallConfigurationState
|
|
{
|
|
public AbsolutePath LastModlist { get; set; }
|
|
|
|
public InstallationConfigurationSetting[] Settings { get; set; } =
|
|
Array.Empty<InstallationConfigurationSetting>();
|
|
}
|
|
|
|
public class InstallationConfigurationSetting
|
|
{
|
|
public AbsolutePath ModList { get; set; }
|
|
public AbsolutePath Install { get; set; }
|
|
public AbsolutePath Downloads { get; set; }
|
|
|
|
public ModlistMetadata? Metadata { get; set; }
|
|
|
|
public AbsolutePath Image { get; set; }
|
|
public ModList? StrippedModListData { get; set; }
|
|
} |