mirror of
https://github.com/logos-storage/logos-storage-nim-cs-dist-tests.git
synced 2026-01-02 13:33:07 +00:00
18 lines
559 B
C#
18 lines
559 B
C#
namespace CodexDistTestCore
|
|
{
|
|
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;
|
|
}
|
|
}
|