using System.Text.Json.Serialization;
namespace Braxnet;
public class Implementation
{
[JsonPropertyName( "name" )] public string Name { get; set; } = "";
[JsonPropertyName( "version" )] public string Version { get; set; } = "";
[JsonPropertyName( "title" )] public string Title { get; set; }
}