Files
SharpIDE/src/SharpIDE.Application/Features/Testing/Client/Dtos/ServerInfo.cs
2025-11-04 00:47:23 +10:00

13 lines
248 B
C#

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");