1
0
mirror of synced 2024-12-01 01:27:21 +01:00
TaikoLocalServer/LocalSaveModScoreMigrator/MusicInfo.cs

8 lines
192 B
C#
Raw Normal View History

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