mirror of
https://github.com/aljazceru/btcpayserver.git
synced 2025-12-18 06:24:24 +01:00
12 lines
318 B
C#
12 lines
318 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; }
|
|
public string TempDir { get; set; }
|
|
}
|
|
}
|