2024-11-01 09:24:46 +01:00

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";
}
}