1using System.Text.Json; 2using System.Text.Json.Nodes; 3 4public interface ScoreComponent { 5 string GetComponentType(); 6 JsonNode GetValue(); 7}