test runner v1

This commit is contained in:
Matt Parker
2025-11-04 00:47:23 +10:00
parent 066b10d7e9
commit b718b2c4e1
21 changed files with 954 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
using Newtonsoft.Json;
namespace SharpIDE.Application.Features.Testing.Client.Dtos;
public sealed record ServerInfo(
[property:JsonProperty("name")]
string Name,
[property:JsonProperty("version")]
string Version = "1.0.0");