wabbajack/Wabbajack.App/Configuration.cs
2021-09-29 16:24:21 -06:00

12 lines
298 B
C#

using Wabbajack.Paths;
namespace Wabbajack.App
{
public class Configuration
{
public AbsolutePath ModListsDownloadLocation { get; set; }
public AbsolutePath SavedSettingsLocation { get; set; }
public AbsolutePath EncryptedDataLocation { get; set; }
}
}