1 files changed, 13 insertions, 0 deletions
diff --git a/ReferenceClientProxyImplementation/Configuration/TestClientConfig.cs b/ReferenceClientProxyImplementation/Configuration/TestClientConfig.cs
new file mode 100644
index 0000000..1776eef
--- /dev/null
+++ b/ReferenceClientProxyImplementation/Configuration/TestClientConfig.cs
@@ -0,0 +1,13 @@
+namespace ReferenceClientProxyImplementation.Configuration;
+
+public class TestClientConfig {
+ public TestClientDebug DebugOptions = new();
+ public bool Enabled { get; set; } = true;
+ // public bool UseLatest = true;
+ public string Revision { get; set; } = "canary";
+ public Dictionary<string, object> GlobalEnv { get; set; } = new();
+
+ // internal
+ public string RevisionPath { get; set; } = null!;
+ public string RevisionBaseUrl { get; set; } = null!;
+}
\ No newline at end of file
|