mirror of
https://github.com/wabbajack-tools/wabbajack.git
synced 2024-08-30 18:42:17 +00:00
2661450e28
This reverts commit e1b753edd3
.
13 lines
393 B
C#
13 lines
393 B
C#
using Wabbajack.Paths;
|
|
|
|
namespace Wabbajack.Services.OSIntegrated;
|
|
|
|
public class Configuration
|
|
{
|
|
public AbsolutePath ModListsDownloadLocation { get; set; }
|
|
public AbsolutePath SavedSettingsLocation { get; set; }
|
|
public AbsolutePath EncryptedDataLocation { get; set; }
|
|
public AbsolutePath LogLocation { get; set; }
|
|
|
|
public AbsolutePath ImageCacheLocation { get; set; }
|
|
} |