1using System.Text.Json.Nodes; 2 3public class TextComponent(string value) : ScoreComponent { 4 public string GetComponentType() { 5 return "dev.tsunagite.score#text"; 6 } 7 public JsonNode GetValue() { 8 return value; 9 } 10}