wabbajack/Wabbajack.Services.OSIntegrated/Configuration.cs
2021-11-09 21:51:37 -07:00

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; }
}