wabbajack/Wabbajack.Services.OSIntegrated/Configuration.cs

13 lines
393 B
C#
Raw Normal View History

2021-09-27 12:42:46 +00:00
using Wabbajack.Paths;
namespace Wabbajack.Services.OSIntegrated;
2021-10-23 16:51:17 +00:00
public class Configuration
2021-09-27 12:42:46 +00:00
{
2021-10-23 16:51:17 +00:00
public AbsolutePath ModListsDownloadLocation { get; set; }
public AbsolutePath SavedSettingsLocation { get; set; }
public AbsolutePath EncryptedDataLocation { get; set; }
public AbsolutePath LogLocation { get; set; }
2021-10-27 21:47:58 +00:00
public AbsolutePath ImageCacheLocation { get; set; }
2021-09-27 12:42:46 +00:00
}