using System.Text.Json.Nodes; public class TextComponent(string value) : ScoreComponent { public string GetComponentType() { return "dev.tsunagite.score#text"; } public JsonNode GetValue() { return value; } }