mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-02-23 22:46:49 +01:00
* More Options refactoring Continues refactoring config classes to use the propert Options pattern where possible. DataDirectories and DatabaseOptions are now configured the Options pattern and the BTCPayOptions is now moved alongside the other config setup * Move COnfigure logic for Options to the Startup
12 lines
286 B
C#
12 lines
286 B
C#
namespace BTCPayServer.Configuration
|
|
{
|
|
public class DataDirectories
|
|
{
|
|
public string DataDir { get; set; }
|
|
public string PluginDir { get; set; }
|
|
public string TempStorageDir { get; set; }
|
|
public string StorageDir { get; set; }
|
|
}
|
|
|
|
|
|
}
|