mirror of
https://github.com/wabbajack-tools/wabbajack.git
synced 2024-08-30 18:42:17 +00:00
20 lines
541 B
C#
20 lines
541 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; }
|
|
}
|
|
} |