From 77a609758bb80bac9497d2e3988550f8be578407 Mon Sep 17 00:00:00 2001 From: Rory& Date: Mon, 23 Feb 2026 02:03:20 +0100 Subject: Initial commit --- .../Configuration/TestClientConfig.cs | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 ReferenceClientProxyImplementation/Configuration/TestClientConfig.cs (limited to 'ReferenceClientProxyImplementation/Configuration/TestClientConfig.cs') 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 GlobalEnv { get; set; } = new(); + + // internal + public string RevisionPath { get; set; } = null!; + public string RevisionBaseUrl { get; set; } = null!; +} \ No newline at end of file -- cgit 1.5.1