mirror of
https://github.com/logos-storage/logos-storage-nim-cs-dist-tests.git
synced 2026-01-09 17:03:08 +00:00
14 lines
477 B
C#
14 lines
477 B
C#
namespace DevconBoothImages
|
|
{
|
|
public class Configuration
|
|
{
|
|
public string CodexLocalEndpoint { get; } = "http://localhost:8080";
|
|
public string CodexPublicEndpoint { get; } = "https://api.testnet.codex.storage/storage/node-9";
|
|
|
|
public string AuthUser { get; } = "";
|
|
public string AuthPw { get; } = "";
|
|
public string LocalNodeBootstrapInfo { get; } = "";
|
|
public string WorkingDir { get; } = "D:\\DevconBoothApp";
|
|
}
|
|
}
|