blob: 1776eeff1dca68dbe45eb1cb5b3ca61613ce8f8f (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
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!;
}
|