1
0
mirror of synced 2025-01-09 20:01:36 +01:00

8 lines
192 B
C#
Raw Normal View History

using System.Text.Json.Serialization;
namespace LocalSaveModScoreMigrator;
public class MusicInfo
{
2022-10-27 00:42:41 +08:00
[JsonPropertyName("items")] public List<MusicInfoEntry> Items { get; set; } = new();
}