1
0
mirror of synced 2024-11-24 15:00:16 +01:00
TaikoLocalServer/LocalSaveModScoreMigrator/MusicInfo.cs
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();
}