cs-codex-dist-tests/CodexDistTestCore/CodexAPI.cs

18 lines
559 B
C#
Raw Normal View History

2023-03-21 12:20:21 +00:00
namespace CodexDistTestCore
2023-03-21 07:23:15 +00:00
{
public class CodexDebugResponse
{
public string id { get; set; } = string.Empty;
public string[] addrs { get; set; } = new string[0];
public string repo { get; set; } = string.Empty;
public string spr { get; set; } = string.Empty;
public CodexDebugVersionResponse codex { get; set; } = new();
}
public class CodexDebugVersionResponse
{
public string version { get; set; } = string.Empty;
public string revision { get; set; } = string.Empty;
}
}