1
0
mirror of synced 2025-01-27 16:33:40 +01:00
2022-10-27 00:42:41 +08:00

8 lines
192 B
C#

using System.Text.Json.Serialization;
namespace LocalSaveModScoreMigrator;
public class MusicInfo
{
[JsonPropertyName("items")] public List<MusicInfoEntry> Items { get; set; } = new();
}