1
0
mirror of synced 2025-02-20 04:31:24 +01:00

8 lines
192 B
C#
Raw Normal View History

2023-09-09 21:58:20 +09:00
using System.Text.Json.Serialization;
namespace LocalSaveModScoreMigrator;
public class MusicInfo
{
[JsonPropertyName("items")] public List<MusicInfoEntry> Items { get; set; } = new();
}