14 lines
477 B
C#
Raw Permalink Normal View History

2024-11-01 09:24:46 +01:00
namespace DevconBoothImages
{
public class Configuration
{
2024-11-01 09:51:20 +01:00
public string CodexLocalEndpoint { get; } = "http://localhost:8080";
public string CodexPublicEndpoint { get; } = "https://api.testnet.codex.storage/storage/node-9";
2024-11-01 09:24:46 +01:00
public string AuthUser { get; } = "";
public string AuthPw { get; } = "";
public string LocalNodeBootstrapInfo { get; } = "";
public string WorkingDir { get; } = "D:\\DevconBoothApp";
}
}