mirror of
https://github.com/logos-storage/logos-storage-nim-cs-dist-tests.git
synced 2026-01-11 01:43:07 +00:00
17 lines
405 B
C#
17 lines
405 B
C#
namespace DevconBoothImages
|
|
{
|
|
public class Configuration
|
|
{
|
|
public string[] CodexEndpoints { get; } =
|
|
[
|
|
"aaaa",
|
|
"bbbb"
|
|
];
|
|
|
|
public string AuthUser { get; } = "";
|
|
public string AuthPw { get; } = "";
|
|
public string LocalNodeBootstrapInfo { get; } = "";
|
|
public string WorkingDir { get; } = "D:\\DevconBoothApp";
|
|
}
|
|
}
|