wabbajack/Wabbajack.App/Configuration.cs
2021-10-18 21:37:10 -06:00

14 lines
361 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; }
public AbsolutePath LogLocation { get; set; }
}
}