using System.Text.Json.Serialization; namespace TaikoSoundEditor.Data { internal class MusicInfos { [JsonPropertyName("items")] public List Items { get; set; } = new List(); } }